From 82efc482c8df9dff2e96a047663d92c3c7c64aa0 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 23 Apr 2026 15:52:16 +0000 Subject: [PATCH] only get first part of address from ecmk --- backend/ecmk_fetcher/processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/ecmk_fetcher/processor.py b/backend/ecmk_fetcher/processor.py index 4f8c24ea..ca6cc175 100644 --- a/backend/ecmk_fetcher/processor.py +++ b/backend/ecmk_fetcher/processor.py @@ -98,7 +98,7 @@ def run_job() -> None: first_name: str = cells.nth(1).inner_text().strip() last_name: str = cells.nth(2).inner_text().strip() - address: str = cells.nth(5).inner_text().strip() + address: str = cells.nth(5).inner_text().split(" ")[0].strip() postcode: str = cells.nth(7).inner_text().strip() status: str = cells.nth(9).inner_text().strip()