1
0
mirror of https://github.com/mbirth/tcl_ota_check.git synced 2024-09-19 22:33:25 +01:00

More ANSI colours.

This commit is contained in:
Markus Birth 2017-10-05 17:59:27 +02:00
parent 0fcb008232
commit d167f06c3f

View File

@ -19,6 +19,10 @@ except (ImportError, AttributeError):
import requests
ANSI_UP_DEL = u"\u001b[F\u001b[K"
ANSI_RED = u"\u001b[1;31m"
ANSI_GREEN = u"\001b[1;32m"
ANSI_YELLOW = u"\u001b[1;33m"
ANSI_CYAN = u"\u001b[1;36m"
ANSI_WHITE = u"\u001b[1;37m"
ANSI_RESET = u"\u001b[0m"