(self, t: AnyType)
| 47 | return t |
| 48 | |
| 49 | def visit_any(self, t: AnyType) -> ProperType: |
| 50 | return self.copy_common(t, AnyType(t.type_of_any, t.source_any, t.missing_import_name)) |
| 51 | |
| 52 | def visit_none_type(self, t: NoneType) -> ProperType: |
| 53 | return self.copy_common(t, NoneType()) |
nothing calls this directly
no test coverage detected