mirror of
https://github.com/marcogll/telegram_expenses_controller.git
synced 2026-01-13 13:25:15 +00:00
12 lines
240 B
Python
12 lines
240 B
Python
"""
|
|
Text normalization functions.
|
|
"""
|
|
|
|
def normalize_text(text: str) -> str:
|
|
"""
|
|
Normalizes a string by converting it to lowercase and stripping whitespace.
|
|
"""
|
|
if not text:
|
|
return ""
|
|
return text.lower().strip()
|