Shredder commited on
Commit
7b7edd0
1 Parent(s): 17c235f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def mainFun(query,file):
21
  text=''
22
  with open(file.name) as f:
23
  text = f.read()
24
- answer,answer_p=quad(query,file.name)
25
  return text,answer_p,summarize_text(answer)
26
 
27
 
 
21
  text=''
22
  with open(file.name) as f:
23
  text = f.read()
24
+ answer,answer_p=quad(query,file)
25
  return text,answer_p,summarize_text(answer)
26
 
27