Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -30,7 +30,7 @@ def fix_words(words: typing.List[str]) -> typing.List[str]:
|
|
30 |
if word[-1] != "ِ":
|
31 |
if (word[-1] == "ه") and (word[-2] != "ا"):
|
32 |
word += "ی"
|
33 |
-
|
34 |
|
35 |
|
36 |
fixed_words.append(word)
|
|
|
30 |
if word[-1] != "ِ":
|
31 |
if (word[-1] == "ه") and (word[-2] != "ا"):
|
32 |
word += "ی"
|
33 |
+
word += "ِ"
|
34 |
|
35 |
|
36 |
fixed_words.append(word)
|