Spaces:
Running
on
Zero
Running
on
Zero
Fix step error handling and wire up error_box
Browse files
app.py
CHANGED
@@ -117,8 +117,4 @@ with gr.Blocks() as demo:
|
|
117 |
event.then(lambda: gr.update(interactive=True), None, inpaint_btn)
|
118 |
|
119 |
# Launch in debug mode so exceptions & prints go to your terminal/logs
|
120 |
-
demo.launch(
|
121 |
-
server_name="0.0.0.0",
|
122 |
-
server_port=7865,
|
123 |
-
debug=True
|
124 |
-
)
|
|
|
117 |
event.then(lambda: gr.update(interactive=True), None, inpaint_btn)
|
118 |
|
119 |
# Launch in debug mode so exceptions & prints go to your terminal/logs
|
120 |
+
demo.launch(debug=True)
|
|
|
|
|
|
|
|