Spaces:
Runtime error
Runtime error
LysandreJik
commited on
Commit
•
8ddd7d5
1
Parent(s):
0a9d8ad
Reordering
Browse files
app.py
CHANGED
@@ -26,10 +26,9 @@ def plot(library: str, stacked: bool):
|
|
26 |
|
27 |
with gr.Blocks() as demo:
|
28 |
inputs = [gr.Dropdown(pipelines), gr.Checkbox(label='Stacked')]
|
|
|
29 |
with gr.Row():
|
30 |
outputs = [gr.Plot()]
|
31 |
-
|
32 |
-
submit = gr.Button('Submit')
|
33 |
submit.click(fn=plot, inputs=inputs, outputs=outputs)
|
34 |
|
35 |
demo.launch()
|
|
|
26 |
|
27 |
with gr.Blocks() as demo:
|
28 |
inputs = [gr.Dropdown(pipelines), gr.Checkbox(label='Stacked')]
|
29 |
+
submit = gr.Button('Submit')
|
30 |
with gr.Row():
|
31 |
outputs = [gr.Plot()]
|
|
|
|
|
32 |
submit.click(fn=plot, inputs=inputs, outputs=outputs)
|
33 |
|
34 |
demo.launch()
|