Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -40,7 +40,7 @@ def remove_redundant_words(text):
|
|
40 |
# Function to fix spacing before punctuation
|
41 |
def fix_punctuation_spacing(text):
|
42 |
# Remove spaces before commas, periods, question marks, etc.
|
43 |
-
text = re.sub(r'\s+([,.\'!?:])', r'\1', text)
|
44 |
return text
|
45 |
|
46 |
# Function to fix possessives like "Earth's"
|
|
|
40 |
# Function to fix spacing before punctuation
|
41 |
def fix_punctuation_spacing(text):
|
42 |
# Remove spaces before commas, periods, question marks, etc.
|
43 |
+
#text = re.sub(r'\s+([,.\'!?:])', r'\1', text)
|
44 |
return text
|
45 |
|
46 |
# Function to fix possessives like "Earth's"
|