(path: str)
| 35 | |
| 36 | |
| 37 | def normalise_path(path: str) -> str: |
| 38 | path = os.path.splitdrive(path)[1] |
| 39 | path = path.replace(os.sep, "/") |
| 40 | return path |
| 41 | |
| 42 | |
| 43 | def normalise_build_source_list(sources: list[BuildSource]) -> list[tuple[str, str | None]]: |
no test coverage detected
searching dependent graphs…