(path: Path, label: str)
| 80 | |
| 81 | |
| 82 | def ensure_existing(path: Path, label: str) -> None: |
| 83 | if not path.exists(): |
| 84 | raise FileNotFoundError(f"{label} does not exist: {path}") |
| 85 | |
| 86 | |
| 87 | def reset_directory(src: Path, dst: Path, *, preserve_components: bool) -> None: |
no test coverage detected