This commit is contained in:
Markos Gogoulos
2026-01-09 13:42:36 +02:00
parent 5fecda02d6
commit abe950f1da

View File

@@ -974,4 +974,4 @@ def get_alphanumeric_and_spaces(string):
string = "".join([char for char in string if char.isalnum() or char.isspace()])
# Replace multiple spaces with single space and strip
string = " ".join(string.split())
return string.lower()
return string