diff --git a/src/core/config.py b/src/core/config.py index 82dd24f..fe5590e 100644 --- a/src/core/config.py +++ b/src/core/config.py @@ -44,7 +44,7 @@ def get_config() -> Config: response.raise_for_status() - return Config(**response.json()["data"]) + return Config(**response.json()["data"]["data"]) config = get_config()