(finder: SourceFinder, f: str)
| 48 | |
| 49 | |
| 50 | def crawl(finder: SourceFinder, f: str) -> tuple[str, str]: |
| 51 | module, base_dir = finder.crawl_up(f) |
| 52 | return module, normalise_path(base_dir) |
| 53 | |
| 54 | |
| 55 | def find_sources_in_dir(finder: SourceFinder, f: str) -> list[tuple[str, str | None]]: |
no test coverage detected
searching dependent graphs…