Spaces:
Runtime error
Runtime error
removed share attribute from launch function
Browse files
app.py
CHANGED
@@ -4,5 +4,5 @@ def greet(name):
|
|
4 |
return "Hello there " + name + "! You Look Marvelous!!!"
|
5 |
|
6 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
-
iface.launch(
|
8 |
#set share="true" to get a local view of app
|
|
|
4 |
return "Hello there " + name + "! You Look Marvelous!!!"
|
5 |
|
6 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
iface.launch()
|
8 |
#set share="true" to get a local view of app
|