Skip to content

Commit 7672030

Browse files
authored
Merge pull request #619 from cmu-delphi/fix-bad-merge
Fix errors for bad merges
2 parents 188c3ce + 40aa759 commit 7672030

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

_delphi_utils_python/data_proc/geomap/geo_data_proc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ def derive_fips_hhs_crosswalk():
547547
)
548548
state_hhs = pd.read_csv(
549549
join(OUTPUT_DIR, STATE_HHS_OUT_FILENAME),
550-
dtype={"state_code": str, "hhs_region_number": str},
550+
dtype={"state_code": str, "hhs": str},
551551
)
552552

553553
fips_pop["state_code"] = fips_pop["fips"].str[:2]
@@ -573,7 +573,7 @@ def derive_zip_hhs_crosswalk():
573573
)
574574
state_hhs = pd.read_csv(
575575
join(OUTPUT_DIR, STATE_HHS_OUT_FILENAME),
576-
dtype={"state_code": str, "hhs_region_number": str},
576+
dtype={"state_code": str, "hhs": str},
577577
)
578578

579579
(

_delphi_utils_python/delphi_utils/data/zip_hhs_table.csv

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2780,7 +2780,6 @@ zip,weight,hhs
27802780
08901,1.0,2
27812781
08902,1.0,2
27822782
08904,1.0,2
2783-
>>>>>>> add-hhs
27842783
10001,1.0,2
27852784
10002,1.0,2
27862785
10003,1.0,2

0 commit comments

Comments
 (0)