Import constants before class

This commit is contained in:
George Lacey 2021-05-07 10:36:15 +01:00
parent 6a6024663f
commit 98dea2e117

View File

@ -1,7 +1,7 @@
from .log import Log
LEVEL_DEBUG = 1 LEVEL_DEBUG = 1
LEVEL_INFO = 2 LEVEL_INFO = 2
LEVEL_WARNING = 3 LEVEL_WARNING = 3
LEVEL_ERROR = 4 LEVEL_ERROR = 4
LEVEL_CRITICAL = 5 LEVEL_CRITICAL = 5
from .log import Log