dammy commited on
Commit
2995def
·
1 Parent(s): 1ea407d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
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(query)
87
 
88
  print(history)
89
- return history, result
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