From b51678647ef34b43e8d4ec23210e5e5f9b4c32b1 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Tue, 19 Nov 2024 16:17:07 +0100 Subject: [PATCH] Fix --- src/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()