(self)
| 819 | self.display_with_columns(pairs=pairs) |
| 820 | |
| 821 | def list_nested(self) -> None: |
| 822 | pairs = self._make_pairs(self.scoped_collection) |
| 823 | extra = "'*' denotes collection defaults" |
| 824 | self.display_with_columns(pairs=pairs, extra=extra) |
| 825 | |
| 826 | def _make_pairs( |
| 827 | self, |
nothing calls this directly
no test coverage detected