sashtech commited on
Commit
8220ab9
·
verified ·
1 Parent(s): 3e59fb4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -174,7 +174,10 @@ def correct_spelling(text):
174
  corrected_words = []
175
  for word in words:
176
  corrected_word = spell.correction(word)
177
- corrected_words.append(corrected_word)
 
 
 
178
  return ' '.join(corrected_words)
179
 
180
  # Function to rephrase text and replace words with their synonyms while maintaining form
 
174
  corrected_words = []
175
  for word in words:
176
  corrected_word = spell.correction(word)
177
+ if corrected_word is not None:
178
+ corrected_words.append(corrected_word)
179
+ else:
180
+ corrected_words.append(word) # Keep the original word if correction is None
181
  return ' '.join(corrected_words)
182
 
183
  # Function to rephrase text and replace words with their synonyms while maintaining form