We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9759cc commit f7b40daCopy full SHA for f7b40da
src/acquisition/rvdss/pull_historic.py
@@ -561,9 +561,6 @@ def fetch_report_data():
561
def fetch_historical_dashboard_data():
562
# Update the end of the 2023-2024 season with the dashboard data
563
included_urls = fetch_archived_dashboard_urls()
564
- dict_list = [{} for url in included_urls]
565
-
566
- for i, base_url in enumerate(included_urls):
567
- dict_list[i]["weekly"] = fetch_dashboard_data(url, 2023)
+ dict_list = [fetch_dashboard_data(url, 2023) for url in included_urls]
568
569
return dict_list
0 commit comments