Write status to JSON file (legacy wrapper).
(status_file: Path, status: dict[str, Any])
| 157 | |
| 158 | |
| 159 | def _write_status(status_file: Path, status: dict[str, Any]) -> None: |
| 160 | """Write status to JSON file (legacy wrapper).""" |
| 161 | write_breadcrumb(status_file, status) |
| 162 | |
| 163 | |
| 164 | def _is_processing_complete(status_file: Path) -> bool: |
no test coverage detected