Skip to content

Commit

Permalink
Fix for missing key in 88a1f10
Browse files Browse the repository at this point in the history
Ref #1540
  • Loading branch information
mxsasha committed Nov 13, 2024
1 parent 5d48447 commit aee4955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checks/probes.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def _verdict(self, report):
for name, subtest in report.items():
status = report[name]["status"]
worst_status = report[name]["worst_status"]
override_mandatory = report[name]["override_mandatory"]
override_mandatory = report[name].get("override_mandatory")
if worst_status == STATUS_FAIL:
is_mandatory = True
elif worst_status == STATUS_NOTICE:
Expand Down

0 comments on commit aee4955

Please sign in to comment.