Update app.py
Browse files
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 |
|