Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ with gr.Blocks() as demo:
|
|
12 |
gr.Markdown("Bug Reproduction: `gr.Progress.tqdm` with `gr.Examples`\n")
|
13 |
iters_input = gr.Number(value=3, label="Iterations")
|
14 |
out = gr.Textbox(label="Output")
|
15 |
-
btn = gr.Button(
|
16 |
btn.click(func, [iters_input], out)
|
17 |
|
18 |
gr.Examples(
|
|
|
12 |
gr.Markdown("Bug Reproduction: `gr.Progress.tqdm` with `gr.Examples`\n")
|
13 |
iters_input = gr.Number(value=3, label="Iterations")
|
14 |
out = gr.Textbox(label="Output")
|
15 |
+
btn = gr.Button()
|
16 |
btn.click(func, [iters_input], out)
|
17 |
|
18 |
gr.Examples(
|