Skip to content

Commit

Permalink
Update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
cchuong committed Nov 22, 2024
1 parent 2251198 commit e505076
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/acquisition/rvdss/pull_historic.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@
from constants import (
HISTORIC_SEASON_URLS,
ALTERNATIVE_SEASON_BASE_URL, SEASON_BASE_URL, FIRST_WEEK_OF_YEAR,
RESP_DETECTIONS_OUTPUT_FILE, POSITIVE_TESTS_OUTPUT_FILE,DASHBOARD_ARCHIVED_DATES_URL,
DASHBOARD_ARCHIVED_DATES_URL,
DASHBOARD_BASE_URL
)
from utils import (
abbreviate_virus, abbreviate_geo, create_geo_types, check_date_format,
get_positive_data, get_detections_data, fetch_dashboard_data,preprocess_table_columns,
make_signal_type_spelling_consistent,add_flu_prefix
fetch_dashboard_data,preprocess_table_columns, add_flu_prefix
)
#%% Functions

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

# combine all the positive tables
combined_positive_tables=pd.concat(positive_tables,axis=1)
combined_positive_tables =pd.concat(positive_tables,axis=1)

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

0 comments on commit e505076

Please sign in to comment.