def print_warnings(wn):
"""
Args:
wn (int): Counts of warnings
Returns:
str: Colorized information by using colorama
"""
if wn > 0:
return Fore.YELLOW + str(wn) + Fore.RESET
else:
return Fore.GREEN + str(wn) + Fore.RESET
评论列表
文章目录