Skip to content

Commit

Permalink
fix: jank
Browse files Browse the repository at this point in the history
  • Loading branch information
dshemetov committed Jun 5, 2024
1 parent 55a821c commit 61277b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nchs_mortality/delphi_nchs_mortality/pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def pull_nchs_mortality_data(socrata_token: str, test_file: Optional[str] = None
Expected column(s) missed, The dataset schema may
have changed. Please investigate and amend the code.
received={''.join(type_dict.keys())}
expected={''.join(df.columns)}
expected={''.join(type_dict.keys())}
received={''.join(df.columns)}
""") from exc

df = df[keep_columns + ["timestamp", "state"]].set_index("timestamp")
Expand Down

0 comments on commit 61277b2

Please sign in to comment.