(self)
| 495 | return enriched_files[offset : offset + size], len(enriched_files), summary |
| 496 | |
| 497 | def _empty_health_summary(self) -> dict[str, int]: |
| 498 | return { |
| 499 | "healthAttentionCount": 0, |
| 500 | "healthDangerCount": 0, |
| 501 | "healthWarningCount": 0, |
| 502 | "expiringSoonCount": 0, |
| 503 | "storageIssueCount": 0, |
| 504 | "neverRetrievedCount": 0, |
| 505 | "healthyCount": 0, |
| 506 | "permanentCount": 0, |
| 507 | } |
| 508 | |
| 509 | def _accumulate_health_summary(self, summary: dict[str, Any], item: dict[str, Any]) -> None: |
| 510 | status_insights = item.get("statusInsights") or {} |
no outgoing calls
no test coverage detected