We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37c1fa4 commit b3b4f35Copy full SHA for b3b4f35
1 file changed
testgen/ui/views/quality_dashboard.py
@@ -31,7 +31,7 @@ def render(self, *, project_code: str, **_kwargs) -> None:
31
"table_groups_count": int(project_summary["table_groups_ct"]),
32
"profiling_runs_count": int(project_summary["profiling_runs_ct"]),
33
},
34
- "scores": [format_score_card(score) for score in get_all_score_cards(project_code) if score["score"] or score["cde_score"] or score["categories"]],
+ "scores": [format_score_card(score) for score in get_all_score_cards(project_code) if score.get("score") or score.get("cde_score") or score.get("categories")],
35
36
on_change_handlers={
37
"RefreshData": refresh_data,
0 commit comments