awacke1 commited on
Commit
eacb895
·
1 Parent(s): 79a896b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,5 +18,5 @@ with gr.Blocks() as block:
18
  )
19
  textin = gr.Textbox(lines=2, interactive=True)
20
  textout = gr.Textbox(lines=2, interactive=True)
21
- radio.change(fn=change_textbox, inputs=radio, textin, outputs=textout)
22
  block.launch()
 
18
  )
19
  textin = gr.Textbox(lines=2, interactive=True)
20
  textout = gr.Textbox(lines=2, interactive=True)
21
+ radio.change(fn=change_textbox, inputs=[radio, textin], outputs=textout)
22
  block.launch()