(path: Path | str, reason: str)
| 220 | |
| 221 | |
| 222 | def _invalid_path(path: Path | str, reason: str) -> WindowsScanLocalFileError: |
| 223 | return WindowsScanLocalFileError(errno.EINVAL, reason, str(path)) |
| 224 | |
| 225 | |
| 226 | def _validated_parts(relative_path: str) -> tuple[str, ...]: |
no test coverage detected