Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 =
|
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)}"
|