(
walked: Iterable[tuple[Path, list[str], list[str]]],
)
| 31 | |
| 32 | |
| 33 | def _hashable_walk( |
| 34 | walked: Iterable[tuple[Path, list[str], list[str]]], |
| 35 | ) -> set[tuple[Path, tuple[str], tuple[str]]]: |
| 36 | return cast( |
| 37 | set[tuple[Path, tuple[str], tuple[str]]], |
| 38 | {(p, *map(tuple, r)) for p, *r in walked}, |
| 39 | ) |
| 40 | |
| 41 | |
| 42 | def hashable_walk(path: Path) -> set[tuple[Path, tuple[str], tuple[str]]]: |
no test coverage detected
searching dependent graphs…