(self, typ: Type | None)
| 373 | return self.fixup(node) |
| 374 | |
| 375 | def fixup_type(self, typ: Type | None) -> None: |
| 376 | if typ is not None: |
| 377 | typ.accept(TypeReplaceVisitor(self.replacements)) |
| 378 | |
| 379 | def process_type_info(self, info: TypeInfo | None) -> None: |
| 380 | if info is None: |
no test coverage detected