(self, imp: ImportAll)
| 123 | self.process_import(imp) |
| 124 | |
| 125 | def visit_import_all(self, imp: ImportAll) -> None: |
| 126 | self.process_import(imp) |
| 127 | |
| 128 | def process_import(self, imp: ImportFrom | ImportAll) -> None: |
| 129 | import_id, ok = correct_relative_import( |
nothing calls this directly
no test coverage detected