app/features/agents/tests/test_service.py:1264 (runs = compact[0]["result"]["runs"]) fails mypy --strict with Value of type "object" is not indexable [index] because AgentService._compact_for_finalizer is annotated -> object.
Introduced by #351 (ae25be8). Masked locally when the lightgbm/xgboost extras are absent (those import errors dominate), but CI installs the extras so it surfaces as the sole Type Check failure. Fix: cast the result to an indexable type in the test.
app/features/agents/tests/test_service.py:1264(runs = compact[0]["result"]["runs"]) failsmypy --strictwithValue of type "object" is not indexable [index]becauseAgentService._compact_for_finalizeris annotated-> object.Introduced by #351 (ae25be8). Masked locally when the lightgbm/xgboost extras are absent (those import errors dominate), but CI installs the extras so it surfaces as the sole Type Check failure. Fix: cast the result to an indexable type in the test.