Improved type-hinting and overall sanity checks implemented.

This commit is contained in:
kku
2024-12-16 20:34:37 +01:00
parent 5c763fc02e
commit c05cf64ae0
14 changed files with 193 additions and 165 deletions

1
enums/__init__.py Normal file
View File

@@ -0,0 +1 @@
from .colors import Color

View File

@@ -1,6 +1,7 @@
from enum import IntEnum
class Color(IntEnum):
fail = 0xd6345b
success = 0x84d961
default = 0xa7a6ab
FAIL = 0xD6345B
SUCCESS = 0x84D961
DEFAULT = 0xA7A6AB