Skip to content

Commit 305cc69

Browse files
author
Tommaso Adani
committed
Fixed linting failure
1 parent 737f0bd commit 305cc69

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/generate_dashboard.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ def _scan_l4_golden_files(models: dict[str, ModelInfo]) -> None:
466466
info.l4_status = "pass"
467467

468468
# Strategy 2: YAML-derived path (case_id may differ from model_type)
469-
for model_type, info in models.items():
469+
for info in models.values():
470470
if info.l4_status is not None or not info.yaml_test_case_file:
471471
continue
472472
case_path = _REPO_ROOT / info.yaml_test_case_file
@@ -495,7 +495,7 @@ def _scan_l5_generation_golden(models: dict[str, ModelInfo]) -> None:
495495
info.l5_status = "pass"
496496

497497
# Strategy 2: YAML-derived path (case_id may differ from model_type)
498-
for model_type, info in models.items():
498+
for info in models.values():
499499
if info.l5_status is not None or not info.yaml_test_case_file:
500500
continue
501501
case_path = _REPO_ROOT / info.yaml_test_case_file

0 commit comments

Comments
 (0)