(self, o: mypy.nodes.Import, /)
| 382 | # Module structure |
| 383 | |
| 384 | def visit_import(self, o: mypy.nodes.Import, /) -> T: |
| 385 | raise NotImplementedError() |
| 386 | |
| 387 | def visit_import_from(self, o: mypy.nodes.ImportFrom, /) -> T: |
| 388 | raise NotImplementedError() |
nothing calls this directly
no test coverage detected