From 61277b290081712643b8f45daf6603b209842823 Mon Sep 17 00:00:00 2001 From: Dmitry Shemetov Date: Tue, 23 Apr 2024 16:35:13 -0700 Subject: [PATCH] fix: jank --- nchs_mortality/delphi_nchs_mortality/pull.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nchs_mortality/delphi_nchs_mortality/pull.py b/nchs_mortality/delphi_nchs_mortality/pull.py index 38fa95ffe..f22a73904 100644 --- a/nchs_mortality/delphi_nchs_mortality/pull.py +++ b/nchs_mortality/delphi_nchs_mortality/pull.py @@ -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")