chore(constants): create constants module to store useful constants

This commit is contained in:
Benex254
2024-07-26 14:07:37 +03:00
parent bc55ed6e81
commit 71d258385c
9 changed files with 44 additions and 42 deletions

View File

@@ -18,7 +18,7 @@ def exit_app(*args):
from rich import print
from ... import USER_NAME
from ...constants import USER_NAME
print("Have a good day :smile:", USER_NAME)
sys.exit(0)

View File

@@ -4,7 +4,7 @@ import os
from InquirerPy import inquirer
from thefuzz import fuzz
from ... import PLATFORM
from ...constants import PLATFORM
from ...Utility.data import anime_normalizer
logger = logging.getLogger(__name__)