Stop swallowing Census API errors (#1051)

This commit is contained in:
Lucas Merrill Brown 2021-12-16 10:54:41 -05:00 committed by GitHub
commit 0d57dd572b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 21 deletions

View file

@ -50,7 +50,6 @@ class CensusACS2010ETL(ExtractTransformLoad):
]
self.EMPLOYMENT_LESS_THAN_HS_IN_LABOR_FORCE = (
# TODO: FIX!!!!!!
"B23006_005E"
# Estimate!!Total!!Less than high school graduate!!In labor force!!Civilian
)
@ -115,7 +114,6 @@ class CensusACS2010ETL(ExtractTransformLoad):
tract_output_field_name=self.GEOID_TRACT_FIELD_NAME,
data_path_for_fips_codes=self.DATA_PATH,
acs_type=self.ACS_TYPE,
raise_errors=False,
)
def transform(self) -> None: