(path: Path, payload: Any)
| 1807 | shutil.rmtree(target_dir) |
| 1808 | target_dir.parent.mkdir(parents=True, exist_ok=True) |
| 1809 | staging_dir.rename(target_dir) |
| 1810 | return target_dir |
| 1811 | except Exception: |
| 1812 | shutil.rmtree(staging_dir, ignore_errors=True) |
| 1813 | raise |
no outgoing calls
no test coverage detected