diff --git a/src/zspotify.py b/src/zspotify.py index 98aaa6fe..acb7fe01 100644 --- a/src/zspotify.py +++ b/src/zspotify.py @@ -55,7 +55,8 @@ class ZSpotify: @classmethod def load_config(cls) -> None: - with open(CONFIG_FILE_PATH, encoding='utf-8') as config_file: + app_dir = os.path.dirname(__file__) + with open(os.path.join(app_dir, CONFIG_FILE_PATH), encoding='utf-8') as config_file: cls.CONFIG = json.load(config_file) @classmethod