Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -141,7 +141,7 @@ with gr.Blocks(css=css, title="ZenCtrl Inpainting") as demo:
|
|
| 141 |
Converts e.g. examples/sofa1.png → examples/sofa1_out.png
|
| 142 |
"""
|
| 143 |
out_path = subj_path.replace(".png", "_out.png")
|
| 144 |
-
return Image.open(out_path)
|
| 145 |
|
| 146 |
# ---------- Examples ----------------------------------------
|
| 147 |
gr.Examples(
|
|
|
|
| 141 |
Converts e.g. examples/sofa1.png → examples/sofa1_out.png
|
| 142 |
"""
|
| 143 |
out_path = subj_path.replace(".png", "_out.png")
|
| 144 |
+
return (Image.open(out_path), )
|
| 145 |
|
| 146 |
# ---------- Examples ----------------------------------------
|
| 147 |
gr.Examples(
|