Skip to content

Commit e505076

Browse files
committed
Update imports
1 parent 2251198 commit e505076

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/acquisition/rvdss/pull_historic.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@
1717
from constants import (
1818
HISTORIC_SEASON_URLS,
1919
ALTERNATIVE_SEASON_BASE_URL, SEASON_BASE_URL, FIRST_WEEK_OF_YEAR,
20-
RESP_DETECTIONS_OUTPUT_FILE, POSITIVE_TESTS_OUTPUT_FILE,DASHBOARD_ARCHIVED_DATES_URL,
20+
DASHBOARD_ARCHIVED_DATES_URL,
2121
DASHBOARD_BASE_URL
2222
)
2323
from utils import (
2424
abbreviate_virus, abbreviate_geo, create_geo_types, check_date_format,
25-
get_positive_data, get_detections_data, fetch_dashboard_data,preprocess_table_columns,
26-
make_signal_type_spelling_consistent,add_flu_prefix
25+
fetch_dashboard_data,preprocess_table_columns, add_flu_prefix
2726
)
2827
#%% Functions
2928

@@ -480,7 +479,7 @@ def fetch_one_season_from_report(url):
480479
#path = "season_" + season[0]+"_"+season[1]
481480

482481
# combine all the positive tables
483-
combined_positive_tables=pd.concat(positive_tables,axis=1)
482+
combined_positive_tables =pd.concat(positive_tables,axis=1)
484483

485484
# Check if the indices are already in the season table
486485
# If not, add the weeks tables into the season table

0 commit comments

Comments
 (0)