Spaces:
Runtime error
Runtime error
Commit ·
0d3fd55
1
Parent(s): ba5390a
Fixing a syntax error.
Browse files
app.py
CHANGED
|
@@ -494,9 +494,13 @@ with iface:
|
|
| 494 |
|
| 495 |
btn = gr.Button("Submit")
|
| 496 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 497 |
btn.click(
|
| 498 |
update_prompt_display,
|
| 499 |
-
inputs=
|
| 500 |
outputs=[prompt_display],
|
| 501 |
).then(
|
| 502 |
selections_to_audio,
|
|
|
|
| 494 |
|
| 495 |
btn = gr.Button("Submit")
|
| 496 |
|
| 497 |
+
update_inputs=[]
|
| 498 |
+
update_inputs.extend(checkbox_groups)
|
| 499 |
+
update_inputs.append(prompt_display)
|
| 500 |
+
|
| 501 |
btn.click(
|
| 502 |
update_prompt_display,
|
| 503 |
+
inputs=update_inputs,
|
| 504 |
outputs=[prompt_display],
|
| 505 |
).then(
|
| 506 |
selections_to_audio,
|