(relpath: str)
| 145 | |
| 146 | |
| 147 | def normalize_relpath(relpath: str) -> str: |
| 148 | normalized = relpath.replace("\\", "/") |
| 149 | return str(PurePosixPath(normalized)) |
| 150 | |
| 151 | |
| 152 | def split_path_entries(path_value: str) -> list[str]: |
no outgoing calls
no test coverage detected