DeMaking's picture
Create utils.py
357295a verified
Raw
History Blame Contribute Delete
114 Bytes
def clean_text(text: str) -> str:
"""
Clean and normalize the input text.
"""
return text.strip()