(self, t: mypy.types.Type)
| 39 | self.id_mapper = IdMapper() |
| 40 | |
| 41 | def stringify_type(self, t: mypy.types.Type) -> str: |
| 42 | import mypy.types |
| 43 | |
| 44 | return t.accept(mypy.types.TypeStrVisitor(id_mapper=self.id_mapper, options=self.options)) |
| 45 | |
| 46 | def get_id(self, o: object) -> int | None: |
| 47 | if self.id_mapper: |
no test coverage detected