diff --git a/get_data.py b/get_data.py index 379a1bb..5d51f8f 100644 --- a/get_data.py +++ b/get_data.py @@ -71,7 +71,7 @@ LOG_CONFIG = { }, "console": { "class": "logging.StreamHandler", - "level": "DEBUG", + "level": "INFO", "formatter": "simple", "stream": "ext://sys.stdout", }, @@ -1637,8 +1637,8 @@ def Json_Team_Generation(who, data, stop_event): x.get("startRole", 99), 99 ), # 99 — по умолчанию ) - rewrite_file(who, sorted_team) - rewrite_file(f"{who}_copy", sorted_team) + rewrite_file(who, sorted_team) # type: ignore + rewrite_file(f"{who}_copy", sorted_team) # type: ignore # print(sorted_team) top_sorted_team = sorted( filter(lambda x: x["startRole"] in ["Player", ""], sorted_team),