@@ -95,8 +95,7 @@ def load_combined_data(denom_filepath, covid_filepath, base_geo,
95
95
issue_date = datetime .strptime (covid_filepath .split ("/" )[- 1 ][:8 ], "%Y%m%d" )
96
96
assert (
97
97
issue_date == datetime .strptime (denom_filepath .split ("/" )[- 1 ][:8 ], "%Y%m%d" )
98
- ), "The aggregated files used for Covid Claims and Total Claims should have the same drop date."
99
-
98
+ ), "The aggregated files used for Covid Claims and Total Claims should have the same drop date."
100
99
101
100
# load each data stream
102
101
denom_data = load_chng_data (denom_filepath , issue_date , base_geo ,
@@ -144,7 +143,6 @@ def load_cli_data(denom_filepath, flu_filepath, mixed_filepath, flu_like_filepat
144
143
assert (
145
144
issue_date == datetime .strptime (denom_filepath .split ("/" )[- 1 ][:8 ], "%Y%m%d" )
146
145
), "The aggregated files used for CLI Claims and Total Claims should have the same drop date."
147
-
148
146
149
147
# load each data stream
150
148
denom_data = load_chng_data (denom_filepath , issue_date , base_geo ,
@@ -199,7 +197,6 @@ def load_flu_data(denom_filepath, flu_filepath, base_geo,
199
197
assert (
200
198
issue_date == datetime .strptime (denom_filepath .split ("/" )[- 1 ][:8 ], "%Y%m%d" )
201
199
), "The aggregated files used for Flu Claims and Total Claims should have the same drop date."
202
-
203
200
204
201
# load each data stream
205
202
denom_data = load_chng_data (denom_filepath , issue_date , base_geo ,
0 commit comments