(self, o: object)
| 49 | return None |
| 50 | |
| 51 | def format_id(self, o: object) -> str: |
| 52 | if self.id_mapper: |
| 53 | return f"<{self.get_id(o)}>" |
| 54 | else: |
| 55 | return "" |
| 56 | |
| 57 | def dump(self, nodes: Sequence[object], obj: mypy.nodes.Context) -> str: |
| 58 | """Convert a list of items to a multiline pretty-printed string. |
no test coverage detected