From 2217f011affdf9322dfd94050c578e8ae6ce94c3 Mon Sep 17 00:00:00 2001 From: Benexl Date: Sat, 1 Nov 2025 20:06:53 +0300 Subject: [PATCH] fix(core-constants): use project name over cli name --- viu_media/core/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viu_media/core/constants.py b/viu_media/core/constants.py index 5f66998..9714f4c 100644 --- a/viu_media/core/constants.py +++ b/viu_media/core/constants.py @@ -25,7 +25,7 @@ ANILIST_AUTH = ( ) try: - APP_DIR = Path(str(resources.files(CLI_NAME.lower()))) + APP_DIR = Path(str(resources.files(PROJECT_NAME.lower()))) except ModuleNotFoundError: from pathlib import Path