fixes windows color
This commit is contained in:
parent
e8483f8c46
commit
584bb0ed36
1 changed files with 2 additions and 2 deletions
|
@ -38,10 +38,10 @@ try:
|
|||
import colorama
|
||||
colorama.init()
|
||||
|
||||
RESET_SEQ = colorama.Fore.RESET
|
||||
RESET_SEQ = colorama.Fore.RESET + colorama.Style.RESET_ALL
|
||||
COLOR_SEQ = lambda x: x
|
||||
BOLD_SEQ = ''
|
||||
BLACK = colorama.Fore.BLACK
|
||||
BLACK = colorama.Fore.BLACK + colorama.Style.DIM
|
||||
RED = colorama.Fore.RED
|
||||
BLUE = colorama.Fore.CYAN
|
||||
USE_COLOR = 'NO_COLOR' not in environ
|
||||
|
|
Loading…
Reference in a new issue