def print_minor_alarms(mn):
"""
Args:
mn (int): Counts of minor alarms
Returns:
str: Colorized information by using colorama
"""
if mn > 0:
return Fore.RED + str(mn) + Fore.RESET
else:
return Fore.GREEN + str(mn) + Fore.RESET
评论列表
文章目录