DeMaking commited on
Commit
357295a
·
verified ·
1 Parent(s): 95070e8

Create utils.py

Browse files
Files changed (1) hide show
  1. utils.py +5 -0
utils.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ def clean_text(text: str) -> str:
2
+ """
3
+ Clean and normalize the input text.
4
+ """
5
+ return text.strip()