Spaces:
Runtime error
Runtime error
[ADD] Summerize urls fix error
Browse files
app.py
CHANGED
|
@@ -32,7 +32,7 @@ def summerize(Option:str, Text:str)-> str:
|
|
| 32 |
paragraph = get_paragaph(Text)
|
| 33 |
result = []
|
| 34 |
for par in paragraph:
|
| 35 |
-
result.append(easyterms(par)
|
| 36 |
res = '\n'.join(data for data in result)
|
| 37 |
return res
|
| 38 |
|
|
|
|
| 32 |
paragraph = get_paragaph(Text)
|
| 33 |
result = []
|
| 34 |
for par in paragraph:
|
| 35 |
+
result.append(easyterms(par))
|
| 36 |
res = '\n'.join(data for data in result)
|
| 37 |
return res
|
| 38 |
|