Spaces:
Runtime error
Runtime error
Commit ·
c4abe73
1
Parent(s): 066b02f
Updated app.py to have correct launch
Browse files
app.py
CHANGED
|
@@ -299,9 +299,8 @@ with gr.Blocks() as demo:
|
|
| 299 |
outputs = generate_gallery )
|
| 300 |
|
| 301 |
|
| 302 |
-
if __name__ ==
|
| 303 |
-
demo.launch(server_name = "0.0.0.0", server_port = 8000, share = False, allowed_paths = [
|
| 304 |
-
|
| 305 |
|
| 306 |
|
| 307 |
|
|
|
|
| 299 |
outputs = generate_gallery )
|
| 300 |
|
| 301 |
|
| 302 |
+
if __name__ == "__main__":
|
| 303 |
+
demo.launch(server_name = "0.0.0.0", server_port = 8000, share = False, allowed_paths = [])
|
|
|
|
| 304 |
|
| 305 |
|
| 306 |
|