Omnibus commited on
Commit
9e6bbf4
1 Parent(s): c82fdc4

Update player.py

Browse files
Files changed (1) hide show
  1. player.py +2 -2
player.py CHANGED
@@ -25,8 +25,8 @@ def find_dataset(author=None):
25
  print(spaces)
26
  return(spaces)
27
  with gr.Blocks() as app:
28
- author = gr.Textbox()
29
  button = gr.Button()
30
  output = gr.HTML()
31
  button.click(find_dataset,author,output)
32
- app.launch()
 
25
  print(spaces)
26
  return(spaces)
27
  with gr.Blocks() as app:
28
+ author = gr.Textbox(label="Author")
29
  button = gr.Button()
30
  output = gr.HTML()
31
  button.click(find_dataset,author,output)
32
+ app.launch(show_api=False,share=False)