Bytt namn till pluralform

This commit is contained in:
2024-08-04 23:39:51 +02:00
parent 44893fce39
commit c0b97871e7
+10
View File
@@ -0,0 +1,10 @@
# Some useful constants to be used in the code
from enum import Enum
class LogLevel(Enum):
DEBUG = 'DEBUG'
INFO = 'INFO'
WARNING = 'WARNING'
ERROR = 'ERROR'
CRITICAL = 'CRITICAL'