Rejekts commited on
Commit
09b1fb5
1 Parent(s): fc254f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,6 +41,6 @@ with gr.Blocks() as app:
41
  with gr.Row():
42
  dropbox = gr.File(label="Upload files")
43
  audio_picker = gr.Dropdown(label="",choices=show_available('audios'))
44
- dropbox.upload(fn=upload_file, inputs=['dropbox'],outputs=['audio_picker'])
45
 
46
  app.launch()
 
41
  with gr.Row():
42
  dropbox = gr.File(label="Upload files")
43
  audio_picker = gr.Dropdown(label="",choices=show_available('audios'))
44
+ dropbox.upload(fn=upload_file, inputs=[dropbox],outputs=[audio_picker])
45
 
46
  app.launch()