DeMaking's picture
Create utils.py
357295a verified
raw
history blame
114 Bytes
def clean_text(text: str) -> str:
"""
Clean and normalize the input text.
"""
return text.strip()