Spaces:
Sleeping
Sleeping
Fixed minor syntax error
Browse files
app.py
CHANGED
|
@@ -15,7 +15,7 @@ def read_dataset(dataset):
|
|
| 15 |
text = []
|
| 16 |
for item in dataset:
|
| 17 |
text.append(item['text'])
|
| 18 |
-
return "\n.join(text)
|
| 19 |
|
| 20 |
context = read_dataset(dataset)
|
| 21 |
|
|
|
|
| 15 |
text = []
|
| 16 |
for item in dataset:
|
| 17 |
text.append(item['text'])
|
| 18 |
+
return "\n".join(text)
|
| 19 |
|
| 20 |
context = read_dataset(dataset)
|
| 21 |
|