tykiww commited on
Commit
058aad7
·
verified ·
1 Parent(s): ef1ffbc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -53,8 +53,8 @@ def get_uploaded_dataset(file):
53
  with open(file,'r') as file:
54
  for line in file:
55
  dataset.append(json.loads(line.strip()))
56
- print(dataset[0])
57
- return dataset[0]
58
 
59
 
60
 
 
53
  with open(file,'r') as file:
54
  for line in file:
55
  dataset.append(json.loads(line.strip()))
56
+ print(dataset[0]['query'])
57
+ return dataset[0]['query']
58
 
59
 
60