Update app.py
Browse files
app.py
CHANGED
|
@@ -80,7 +80,7 @@ def run_query(btn, history, query):
|
|
| 80 |
print('printing result after call back')
|
| 81 |
print(result)
|
| 82 |
|
| 83 |
-
history.append((query, result))
|
| 84 |
|
| 85 |
|
| 86 |
print('printing history')
|
|
|
|
| 80 |
print('printing result after call back')
|
| 81 |
print(result)
|
| 82 |
|
| 83 |
+
history.append((query, str(result[0])))
|
| 84 |
|
| 85 |
|
| 86 |
print('printing history')
|