diff --git a/etl/eligibility/ha_15_32/ha24_app.py b/etl/eligibility/ha_15_32/ha24_app.py index 44cc27e2..3b4db9ca 100644 --- a/etl/eligibility/ha_15_32/ha24_app.py +++ b/etl/eligibility/ha_15_32/ha24_app.py @@ -90,6 +90,11 @@ def load_data(): # Tidy up the street/block name a bit survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace("/", ", ") survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.lower() + survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.strip() + + survey_list["Street / Block Name"] = survey_list["Street / Block Name"].str.replace( + "Council House/Nidds Lane", "NIDDS LANE" + ) # Drop all None rows survey_list = survey_list.dropna(how='all')