We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea02d33 commit 23d3fcbCopy full SHA for 23d3fcb
src/acquisition/covidcast/csv_importer.py
@@ -53,7 +53,7 @@ class CsvImporter:
53
"""Finds and parses covidcast CSV files."""
54
55
# set of allowed resolutions (aka "geo_type")
56
- GEOGRAPHIC_RESOLUTIONS = {'county', 'hrr', 'msa', 'dma', 'state', 'hhs', 'nation', "hsa", "hsa_nci"}
+ GEOGRAPHIC_RESOLUTIONS = {'county', 'hrr', 'msa', 'dma', 'state', 'hhs', 'nation', 'hsa_nci'}
57
58
# regex pattern for matching geo types, note: sort longer string first to avoid wrong substring matches
59
geo_types_pattern = "|".join(sorted(GEOGRAPHIC_RESOLUTIONS, key=len, reverse=True))
0 commit comments