From 25684622f96b36a56f0736210e530865b564c90d Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Wed, 27 Dec 2023 13:32:42 +0000 Subject: [PATCH] working through matching ha24 --- etl/eligibility/ha_15_32/ha24_app.py | 5 +++++ 1 file changed, 5 insertions(+) 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')