File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def get_group_color(group) -> str:
4747 color = Colors .WARNING
4848 elif group == "🗣️" :
4949 color = Colors .HEADER
50- elif group == "🚫" :
50+ elif any ( mk in group for mk in [ "💯" , "🚫" ]) :
5151 color = Colors .UNDERLINE
5252 elif any (mk in group for mk in ["🦟" , "🖴" ]):
5353 color = Colors .DEBUG
Original file line number Diff line number Diff line change 77{% if cycle_data %}{{ cycle_data }}{% endif %}
88{% if debug_data %}🗣️Debug Data{% for obj in debug_data %}
99
10- 🚫 Cycle {{ obj.cycle_num }}{% for index in range(obj.messages | length) %}
10+ 💯 Cycle {{ obj.cycle_num }}{% for index in range(obj.messages | length) %}
1111{{obj.priorities[index]}}{{obj.messages[index]}}{% endfor %}
1212{% endfor %}{% endif %}
1313{% if failures %}{{ failures }}{% endif %}
Original file line number Diff line number Diff line change 4848 "💻" : Colors .OK ,
4949 "○" : Colors .OK ,
5050 "💤" : Colors .OK ,
51+ "💯" : Colors .UNDERLINE ,
5152 "🚫" : Colors .UNDERLINE ,
5253 "🗣️" : Colors .HEADER ,
5354}
You can’t perform that action at this time.
0 commit comments