camparchimedes commited on
Commit
208a5cd
·
verified ·
1 Parent(s): b6ce02f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -262,10 +262,9 @@ with iface:
262
  transcribe_btn = gr.Button("Transcribe Interview")
263
  text_output = gr.Textbox()
264
  system_info = gr.Textbox(label="System Info")
 
 
265
 
266
- transcribe_btn.click(fn=transcribe_audio,
267
- [microphone, upload], outputs=[text_output, system_info]
268
- )
269
 
270
  with gr.Tabs():
271
 
 
262
  transcribe_btn = gr.Button("Transcribe Interview")
263
  text_output = gr.Textbox()
264
  system_info = gr.Textbox(label="System Info")
265
+ # --basic syntax!: positional argument ")" follows keyword argument, e.g ..., system_info :P
266
+ transcribe_btn.click(fn=transcribe_audio,[microphone, upload], outputs=[text_output, system_info])
267
 
 
 
 
268
 
269
  with gr.Tabs():
270