Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -215,7 +215,5 @@ def get_output(image):
|
|
215 |
return image
|
216 |
|
217 |
|
218 |
-
gr.Interface(fn=get_output,
|
219 |
-
|
220 |
-
outputs="image"
|
221 |
-
).launch(debug=True)
|
|
|
215 |
return image
|
216 |
|
217 |
|
218 |
+
demo = gr.Interface(fn=get_output, inputs="image", outputs="image")
|
219 |
+
demo.launch(debug=True)
|
|
|
|