(self, dir: str)
| 169 | return module, base_dir |
| 170 | |
| 171 | def crawl_up_dir(self, dir: str) -> tuple[str, str]: |
| 172 | return self._crawl_up_helper(dir) or ("", dir) |
| 173 | |
| 174 | @functools.lru_cache # noqa: B019 |
| 175 | def _crawl_up_helper(self, dir: str) -> tuple[str, str] | None: |
no test coverage detected