andreska commited on
Commit
3a24c45
·
verified ·
1 Parent(s): d943ab1

Fixed minor syntax error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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