Omnibus commited on
Commit
3cf9cd9
·
1 Parent(s): 6957020

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -58,7 +58,7 @@ def dl(inp):
58
  with gr.Blocks() as app:
59
  inp_url = gr.Textbox()
60
  with gr.Row():
61
- btn=gr.Button("Search")
62
  go_btn = gr.Button("Run")
63
 
64
  with gr.Row():
@@ -67,7 +67,7 @@ with gr.Blocks() as app:
67
  with gr.Column():
68
  outp_files=gr.Files()
69
  out_json = gr.JSON()
70
- btn.click(dl,inp_url,out_json)
71
  go_btn.click(dl,inp_url,[outp_vid,outp_files,out_json])
72
 
73
  app.launch()
 
58
  with gr.Blocks() as app:
59
  inp_url = gr.Textbox()
60
  with gr.Row():
61
+ #btn=gr.Button("Search")
62
  go_btn = gr.Button("Run")
63
 
64
  with gr.Row():
 
67
  with gr.Column():
68
  outp_files=gr.Files()
69
  out_json = gr.JSON()
70
+ #btn.click(dl,inp_url,out_json)
71
  go_btn.click(dl,inp_url,[outp_vid,outp_files,out_json])
72
 
73
  app.launch()