(path: Path)
| 25 | |
| 26 | |
| 27 | def _rmtree(path: Path) -> None: |
| 28 | try: |
| 29 | shutil.rmtree(path) |
| 30 | except FileNotFoundError: |
| 31 | pass |
| 32 | except Exception: |
| 33 | logger.warning("failed to remove %s", path, exc_info=True) |
| 34 | |
| 35 | |
| 36 | # Only one heavy job runs at a time -- Demucs is GPU/CPU-hungry. |