(self, imp: ImportFrom)
| 120 | super().visit_mypy_file(o) |
| 121 | |
| 122 | def visit_import_from(self, imp: ImportFrom) -> None: |
| 123 | self.process_import(imp) |
| 124 | |
| 125 | def visit_import_all(self, imp: ImportAll) -> None: |
| 126 | self.process_import(imp) |
nothing calls this directly
no test coverage detected