fix: type annotations for mypy parity with master

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NfPpSpccTWBfZg1FTveyaU
This commit is contained in:
2026-07-09 17:52:02 -04:00
co-authored by Claude Fable 5
parent e98cca22f7
commit 447b9574a3
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ def _build_threshold_configs_from_form(form_data: dict) -> dict:
metrics = cfg.get("metrics")
if not isinstance(metrics, dict):
continue
thresholds = {}
thresholds: dict = {}
for metric_path, values in metrics.items():
_insert_threshold_metric(thresholds, metric_path, values)
entry = {"thresholds": thresholds}