replaces namespace fenrir with fenrirscreenreader
This commit is contained in:
13
src/fenrirscreenreader/core/debug.py
Normal file
13
src/fenrirscreenreader/core/debug.py
Normal file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
from enum import Enum
|
||||
|
||||
class debugLevel(Enum):
|
||||
DEACTIVE = 0
|
||||
ERROR = 1
|
||||
WARNING = 2
|
||||
INFO = 3
|
||||
def __int__(self):
|
||||
return self.value
|
||||
def __str__(self):
|
||||
return self.name
|
Reference in New Issue
Block a user