Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -3,5 +3,5 @@ import gradio as gr
|
|
3 |
def main():
|
4 |
return gr.HTML("<h1>Test</h1>")
|
5 |
|
6 |
-
demo = gr.Interface(fn=main)
|
7 |
demo.launch()
|
|
|
3 |
def main():
|
4 |
return gr.HTML("<h1>Test</h1>")
|
5 |
|
6 |
+
demo = gr.Interface(fn=main, inputs=[], outputs=[])
|
7 |
demo.launch()
|