Update app.py
Browse files
app.py
CHANGED
@@ -83,11 +83,10 @@ def run_query(file, history, query):
|
|
83 |
result = local_query(query, context)
|
84 |
print(result)
|
85 |
|
86 |
-
history = history.append(
|
87 |
|
88 |
print(history)
|
89 |
-
return history
|
90 |
-
|
91 |
|
92 |
|
93 |
|
|
|
83 |
result = local_query(query, context)
|
84 |
print(result)
|
85 |
|
86 |
+
history = history.append(result)
|
87 |
|
88 |
print(history)
|
89 |
+
return history
|
|
|
90 |
|
91 |
|
92 |
|