Improved type-hinting and overall sanity checks implemented.
This commit is contained in:
1
enums/__init__.py
Normal file
1
enums/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from .colors import Color
|
@@ -1,6 +1,7 @@
|
||||
from enum import IntEnum
|
||||
|
||||
|
||||
class Color(IntEnum):
|
||||
fail = 0xd6345b
|
||||
success = 0x84d961
|
||||
default = 0xa7a6ab
|
||||
FAIL = 0xD6345B
|
||||
SUCCESS = 0x84D961
|
||||
DEFAULT = 0xA7A6AB
|
||||
|
Reference in New Issue
Block a user