From 76c7a9a4ba06c18e4c5068cc16932f721a5c0943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piet=20Br=C3=B6mmel?= Date: Thu, 9 May 2024 12:55:42 +0200 Subject: [PATCH] fix --- fetch_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch_data.py b/fetch_data.py index 559a97479ac..13e3a8c6940 100644 --- a/fetch_data.py +++ b/fetch_data.py @@ -47,7 +47,7 @@ def main(): eva_name_list = [line.split(",") for line in f.read().split("\n")] curent_hour = datetime.now().hour - for eva, name in eva_name_list[:3]: + for eva, name in eva_name_list: formatted_fchg_url = fchg_url.format(eva=eva) save_api_data(formatted_fchg_url, save_folder / f"{eva}_fchg_{curent_hour:02}.xml", prettify=False) for hour in range(curent_hour, curent_hour + 6):