Skip to content

Commit 23d3fcb

Browse files
committed
remove hsa from GEOGRAPHIC_RESOLUTIONS
1 parent ea02d33 commit 23d3fcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/acquisition/covidcast/csv_importer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class CsvImporter:
5353
"""Finds and parses covidcast CSV files."""
5454

5555
# set of allowed resolutions (aka "geo_type")
56-
GEOGRAPHIC_RESOLUTIONS = {'county', 'hrr', 'msa', 'dma', 'state', 'hhs', 'nation', "hsa", "hsa_nci"}
56+
GEOGRAPHIC_RESOLUTIONS = {'county', 'hrr', 'msa', 'dma', 'state', 'hhs', 'nation', 'hsa_nci'}
5757

5858
# regex pattern for matching geo types, note: sort longer string first to avoid wrong substring matches
5959
geo_types_pattern = "|".join(sorted(GEOGRAPHIC_RESOLUTIONS, key=len, reverse=True))

0 commit comments

Comments
 (0)