(self, visitor: NodeVisitor[T])
| 553 | return self._fullname |
| 554 | |
| 555 | def accept(self, visitor: NodeVisitor[T]) -> T: |
| 556 | return visitor.visit_mypy_file(self) |
| 557 | |
| 558 | def is_package_init_file(self) -> bool: |
| 559 | return len(self.path) != 0 and os.path.basename(self.path).startswith("__init__.") |
nothing calls this directly
no test coverage detected