(src: Path, dst: Path)
| 94 | |
| 95 | |
| 96 | def _copy_file(src: Path, dst: Path) -> None: |
| 97 | dst.parent.mkdir(parents=True, exist_ok=True) |
| 98 | shutil.copy2(src, dst) |
| 99 | |
| 100 | |
| 101 | def _get_source_mtime(source_dir: Path) -> float: |
no outgoing calls
no test coverage detected