Update app.py
Browse files
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()
|