sh_cpl/src/sh_edraft/utils/console.py

12 lines
230 B
Python
Raw Normal View History

from termcolor import colored
class Console:
@staticmethod
def write_line(string: str, color: str = None):
if color is not None:
print(colored(string, color))
else:
print(string)