Skip to content

Commit 151c715

Browse files
Jingjing TangJingjing Tang
Jingjing Tang
authored and
Jingjing Tang
committed
fix linting
1 parent efcd0ba commit 151c715

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

changehc/delphi_changehc/load_data.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ def load_combined_data(denom_filepath, covid_filepath, base_geo,
9595
issue_date = datetime.strptime(covid_filepath.split("/")[-1][:8], "%Y%m%d")
9696
assert (
9797
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."
10099

101100
# load each data stream
102101
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
144143
assert (
145144
issue_date == datetime.strptime(denom_filepath.split("/")[-1][:8], "%Y%m%d")
146145
), "The aggregated files used for CLI Claims and Total Claims should have the same drop date."
147-
148146

149147
# load each data stream
150148
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,
199197
assert (
200198
issue_date == datetime.strptime(denom_filepath.split("/")[-1][:8], "%Y%m%d")
201199
), "The aggregated files used for Flu Claims and Total Claims should have the same drop date."
202-
203200

204201
# load each data stream
205202
denom_data = load_chng_data(denom_filepath, issue_date, base_geo,

0 commit comments

Comments
 (0)