Check if processing is complete based on status file (legacy wrapper).
(status_file: Path)
| 162 | |
| 163 | |
| 164 | def _is_processing_complete(status_file: Path) -> bool: |
| 165 | """Check if processing is complete based on status file (legacy wrapper).""" |
| 166 | return is_download_complete(status_file) |
| 167 | |
| 168 | |
| 169 | def _download_with_progress( |
no test coverage detected