diff --git a/get_data_new.py b/get_data_new.py index 4ba567c..bc0bdfc 100644 --- a/get_data_new.py +++ b/get_data_new.py @@ -1003,7 +1003,7 @@ def Play_By_Play(data: dict) -> None: os.makedirs(directory, exist_ok=True) filepath = os.path.join(directory, "play_by_play.json") - df_goals.to_json(filepath, orient="records", force_ascii=False, indent=4) + df_goals.to_json(filepath, orient="records", force_ascii=False) logger.debug("Успешно положил данные об play-by-play в файл") except Exception as e: logger.error(f"Ошибка в Play_By_Play: {e}", exc_info=True)