Spaces:
Runtime error
Runtime error
Commit
·
9aff79c
1
Parent(s):
effac9d
Update app.py
Browse files
app.py
CHANGED
|
@@ -11,7 +11,7 @@ if(col2.button("Generate!")):
|
|
| 11 |
text_ar = text_ar.replace("\n", " ")
|
| 12 |
text_ar = text_ar.split('.')
|
| 13 |
for text in text_ar :
|
| 14 |
-
string.isspace(text):
|
| 15 |
continue
|
| 16 |
pairs = creator(text)
|
| 17 |
for pair in pairs:
|
|
|
|
| 11 |
text_ar = text_ar.replace("\n", " ")
|
| 12 |
text_ar = text_ar.split('.')
|
| 13 |
for text in text_ar :
|
| 14 |
+
if string.isspace(text):
|
| 15 |
continue
|
| 16 |
pairs = creator(text)
|
| 17 |
for pair in pairs:
|