mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
running black
This commit is contained in:
parent
4e42af76e6
commit
c6ceb91f67
3 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||||
]
|
]
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue