fix w sugestiach

This commit is contained in:
Mateusz Gruszczyński
2025-08-15 22:29:40 +02:00
parent 028ae3c26e
commit 4b99b109bd

4
app.py
View File

@@ -961,7 +961,9 @@ def get_active_months_query(visible_lists_query=None):
def normalize_name(name):
return (name or "").strip().lower()
if not name:
return ""
return re.sub(r'\s+', ' ', name).strip().lower()
############# OCR ###########################