Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ def greet(name):
|
|
28 |
return f"Hello, {name}!"
|
29 |
|
30 |
with gr.Blocks() as blocks:
|
31 |
-
gr.Dataframe(value=data_for_app.get_data, label="My Data")
|
32 |
|
33 |
# Mount Gradio app to root
|
34 |
app = gr.mount_gradio_app(app, blocks, path="/")
|
|
|
28 |
return f"Hello, {name}!"
|
29 |
|
30 |
with gr.Blocks() as blocks:
|
31 |
+
gr.Dataframe(value=lambda x: data_for_app.get_data(), label="My Data")
|
32 |
|
33 |
# Mount Gradio app to root
|
34 |
app = gr.mount_gradio_app(app, blocks, path="/")
|