running black

This commit is contained in:
lucasmbrown-usds 2022-09-07 13:53:52 -04:00
parent 4e42af76e6
commit c6ceb91f67
3 changed files with 3 additions and 3 deletions

View file

@ -399,5 +399,5 @@ TILES_SCORE_FLOAT_COLUMNS = [
# that use null to signify missing information in a boolean field. # that use null to signify missing information in a boolean field.
field_names.ELIGIBLE_FUDS_BINARY_FIELD_NAME, field_names.ELIGIBLE_FUDS_BINARY_FIELD_NAME,
field_names.AML_BOOLEAN, field_names.AML_BOOLEAN,
field_names.HISTORIC_REDLINING_SCORE_EXCEEDED field_names.HISTORIC_REDLINING_SCORE_EXCEEDED,
] ]

View file

@ -380,7 +380,8 @@ class ScoreETL(ExtractTransformLoad):
), "Join against national tract list ADDED rows" ), "Join against national tract list ADDED rows"
logger.info( logger.info(
"Dropped %s tracts not in the 2010 tract data", "Dropped %s tracts not in the 2010 tract data",
pre_join_len - census_tract_df[field_names.GEOID_TRACT_FIELD].nunique() pre_join_len
- census_tract_df[field_names.GEOID_TRACT_FIELD].nunique(),
) )
# Now sanity-check the merged df. # Now sanity-check the merged df.

View file

@ -158,4 +158,3 @@ class CDCLifeExpectancy(ExtractTransformLoad):
self.output_df[self.COLUMNS_TO_KEEP].to_csv( self.output_df[self.COLUMNS_TO_KEEP].to_csv(
path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False
) )