(self)
| 815 | getattr(self, "list_{}".format(self.list_format))() |
| 816 | |
| 817 | def list_flat(self) -> None: |
| 818 | pairs = self._make_pairs(self.scoped_collection) |
| 819 | self.display_with_columns(pairs=pairs) |
| 820 | |
| 821 | def list_nested(self) -> None: |
| 822 | pairs = self._make_pairs(self.scoped_collection) |
nothing calls this directly
no test coverage detected