From 67ab03227acf8df606868b6d50a21679d16976f8 Mon Sep 17 00:00:00 2001 From: Egor Matveev Date: Wed, 4 Jun 2025 21:07:43 +0300 Subject: [PATCH] fix --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index be1719c..8497e15 100644 --- a/main.py +++ b/main.py @@ -25,9 +25,9 @@ def call(command: str) -> Response: def get_hosts() -> list[str]: if os.getenv("STAGE") == "development": - return list(set(configurator.get_config("hosts") + ["platform.develop.sprinthub.ru"])) + return list(set(list(configurator.get_config("hosts")) + ["platform.develop.sprinthub.ru"])) else: - return list(set(configurator.get_config("hosts") + ["platform.sprinthub.ru"])) + return list(set(list(configurator.get_config("hosts")) + ["platform.sprinthub.ru"])) def update_host(host: str) -> bool: