handling ha56 dupes|

This commit is contained in:
Khalim Conn-Kowlessar 2024-03-10 14:35:08 +00:00
parent 8b3f4d3a52
commit 4a6711a140

View file

@ -1846,6 +1846,13 @@ class DataLoader:
"PORTLAND RD", "Portland Road"
)
# We remove a row, because two rows match to a block listing
survey_list = survey_list[
~((survey_list["Street / Block Name"] == "Tavlin Avenue") &
(survey_list["NO."] == 17) &
(survey_list["Post Code"] == "WA5 0EN"))
]
return survey_list
@staticmethod