Yaron Koresh commited on
Commit
9fb31ff
·
verified ·
1 Parent(s): 72f8c56

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -196,6 +196,6 @@ with gr.Blocks(theme=gr.themes.Soft(),css=css,js=js) as demo:
196
  ln = len(result)
197
  idxs = list(range(ln))
198
  Pool(ln).imap( _ret, idxs )
199
- run_button.click(_rets)
200
 
201
  demo.queue().launch()
 
196
  ln = len(result)
197
  idxs = list(range(ln))
198
  Pool(ln).imap( _ret, idxs )
199
+ run_button.click(fn=_rets)
200
 
201
  demo.queue().launch()