prashanth commited on
Commit
6cb3d1f
·
verified ·
1 Parent(s): 3d62b4b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ def spell_checker(sentence:str)-> str: #it's import to specify the return type
15
  arg1: the sentence to be corrected
16
  """
17
  try:
18
- corrected_sentence = corrected_sentence+"****"
19
  return corrected_sentence
20
  except Exception as e:
21
  return f"An error occurred during spell checking: {str(e)}"
 
15
  arg1: the sentence to be corrected
16
  """
17
  try:
18
+ corrected_sentence = sentence+"****"
19
  return corrected_sentence
20
  except Exception as e:
21
  return f"An error occurred during spell checking: {str(e)}"