Skip to content

Commit ffe7a15

Browse files
committed
Ensure that 'error' level is shown (if highest) in LHS
1 parent 638c64a commit ffe7a15

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pointblank/validate.py

+2
Original file line numberDiff line numberDiff line change
@@ -6980,6 +6980,8 @@ def get_tabular_report(
69806980
status_color_list.append(SEVERITY_LEVEL_COLORS["green"])
69816981
elif validation_info_dict["critical"][i]:
69826982
status_color_list.append(SEVERITY_LEVEL_COLORS["critical"])
6983+
elif validation_info_dict["error"][i]:
6984+
status_color_list.append(SEVERITY_LEVEL_COLORS["error"])
69836985
elif validation_info_dict["warning"][i]:
69846986
status_color_list.append(SEVERITY_LEVEL_COLORS["warning"])
69856987
else:

0 commit comments

Comments
 (0)