Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Piet Brömmel committed May 9, 2024
1 parent e7dd4fd commit 76c7a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fetch_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 76c7a9a

Please sign in to comment.