Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Ole
2026-05-18 21:31:52 +00:00
parent 6eedfffa4d
commit c9383788de
22 changed files with 1614 additions and 42 deletions
-1
View File
@@ -44,7 +44,6 @@ def normalize_number(num_str: str | None) -> int | None:
if not num_str:
return None
cleaned = re.sub(r"[^\d,\.]", "", num_str)
cleaned = cleaned.replace(" ", "")
if "," in cleaned:
cleaned = cleaned.replace(".", "").replace(",", ".")
else: