Checks whether a group has finished reprocessing.
(group_id: int)
| 707 | |
| 708 | |
| 709 | def is_group_finished(group_id: int) -> bool: |
| 710 | """ |
| 711 | Checks whether a group has finished reprocessing. |
| 712 | """ |
| 713 | |
| 714 | pending, _ = get_progress(group_id) |
| 715 | return pending <= 0 |
| 716 | |
| 717 | |
| 718 | def get_progress(group_id: int, project_id: int | None = None) -> tuple[int, Any | None]: |