From 52ec293aaf0078149551cb4362b023c6d4b070c8 Mon Sep 17 00:00:00 2001 From: Egor Matveev Date: Thu, 12 Jun 2025 02:19:13 +0300 Subject: [PATCH] fix --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 7cb03e4..ac391ff 100644 --- a/main.py +++ b/main.py @@ -50,7 +50,7 @@ def call(command: str) -> Response: def get_hosts() -> list[str]: response = get( f"http://configurator/api/v1/fetch?project=certupdater&stage={os.getenv("STAGE")}" - ) + ).json() hosts = response["configs"]["hosts"] return list(hosts) -- 2.45.2