(path: str)
| 752 | |
| 753 | |
| 754 | def is_init_file(path: str) -> bool: |
| 755 | return os.path.basename(path) in ("__init__.py", "__init__.pyi") |
| 756 | |
| 757 | |
| 758 | def verify_module(fscache: FileSystemCache, id: str, path: str, prefix: str) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…