From ee58ad868d990f68ebda5181cb69f07df3822339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=AE=D1=80=D0=B8=D0=B9=20=D0=A7=D0=B5=D1=80=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE?= Date: Mon, 27 Oct 2025 17:54:49 +0300 Subject: [PATCH] test6 --- get_data_new.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/get_data_new.py b/get_data_new.py index 6203316..f01b246 100644 --- a/get_data_new.py +++ b/get_data_new.py @@ -1202,7 +1202,7 @@ def Json_Team_Generation( x.get("startRole", 99), 99 ), # 99 — по умолчанию ) - out_path = f"{who}.json" + out_path = f"{who}" atomic_write_json(sorted_team, out_path) logging.info("Сохранил payload: {out_path}") @@ -1222,7 +1222,7 @@ def Json_Team_Generation( item["pts"] = "" if item["num"] == "" else item["pts"] item["foul"] = "" if item["num"] == "" else item["foul"] - out_path = f"top{who.replace('t','T')}.json" + out_path = f"top{who.replace('t','T')}" atomic_write_json(top_sorted_team, out_path) logging.info("Сохранил payload: {out_path}") @@ -1235,7 +1235,7 @@ def Json_Team_Generation( reverse=False, ) - out_path = f"started_{who}.json" + out_path = f"started_{who}" atomic_write_json(started_team, out_path) logging.info("Сохранил payload: {out_path}") @@ -1531,7 +1531,7 @@ def Team_Both_Stat(merged: dict, *, out_dir: str = "static") -> None: } ) - out_path = "team_stats.json" + out_path = "team_stats" atomic_write_json(result_json, out_path) logging.info("Сохранил payload: {out_path}")