modify app.py to remove settings within demo.launch()
Browse files
app.py
CHANGED
|
@@ -260,10 +260,4 @@ with gr.Blocks(css=custom_css, title="Interactive Image Mosaic Generator") as de
|
|
| 260 |
)
|
| 261 |
|
| 262 |
if __name__ == "__main__":
|
| 263 |
-
demo.launch(
|
| 264 |
-
share=True,
|
| 265 |
-
server_name="127.0.0.1",
|
| 266 |
-
server_port=7861,
|
| 267 |
-
show_api=False,
|
| 268 |
-
show_error=True
|
| 269 |
-
)
|
|
|
|
| 260 |
)
|
| 261 |
|
| 262 |
if __name__ == "__main__":
|
| 263 |
+
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|