(self)
| 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__.") |
| 560 | |
| 561 | def is_future_flag_set(self, flag: str) -> bool: |
| 562 | return flag in self.future_import_flags |
no test coverage detected