Remove extra bracket
Browse files
app.py
CHANGED
@@ -47,7 +47,7 @@ with gr.Blocks() as demo:
|
|
47 |
headers=["Quotes"],
|
48 |
max_rows=5,
|
49 |
interactive=False,
|
50 |
-
wrap=True)
|
51 |
)
|
52 |
btn = gr.Button("Run")
|
53 |
btn.click(fn=update, inputs=inp, outputs=[out1,out2])
|
|
|
47 |
headers=["Quotes"],
|
48 |
max_rows=5,
|
49 |
interactive=False,
|
50 |
+
wrap=True)
|
51 |
)
|
52 |
btn = gr.Button("Run")
|
53 |
btn.click(fn=update, inputs=inp, outputs=[out1,out2])
|