nathanjc commited on
Commit
74e1781
·
1 Parent(s): 0c26d6f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -215,7 +215,5 @@ def get_output(image):
215
  return image
216
 
217
 
218
- gr.Interface(fn=get_output,
219
- inputs=gr.Image(type = "pil", label="Your image"),
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)