Skip to content

Commit 4c20ca8

Browse files
committed
Fix log colors bug
1 parent 512a6e7 commit 4c20ca8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

qiling/log.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import os
99
import re
1010

11-
from enum import Enum
1211
from typing import Optional, TextIO
1312

1413
from qiling.const import QL_VERBOSE
@@ -17,7 +16,7 @@
1716

1817
FMT_STR = '%(levelname)s\t%(message)s'
1918

20-
class COLOR(Enum):
19+
class COLOR:
2120
WHITE = '\033[37m'
2221
CRIMSON = '\033[31m'
2322
RED = '\033[91m'

0 commit comments

Comments
 (0)