If loss is undefined it should be green

This commit is contained in:
har0ke 2019-08-20 19:39:20 +02:00
parent 504d33f893
commit a5e1b3e357

View File

@ -26,6 +26,8 @@ def parse_date(date_str):
def get_loss_color(loss):
if loss is None:
return "green"
return ("red" if abs(loss) > LOSS_ERROR_LEVEL * 100 else
("orange" if abs(loss) > LOSS_WARN_LEVEL * 100 else "green"))