Update app.py
#6
by
John6666
- opened
app.py
CHANGED
@@ -502,6 +502,6 @@ if __name__ == '__main__':
|
|
502 |
]
|
503 |
)
|
504 |
if limitation is True:
|
505 |
-
app.queue(
|
506 |
else:
|
507 |
-
app.queue(
|
|
|
502 |
]
|
503 |
)
|
504 |
if limitation is True:
|
505 |
+
app.queue(max_size=20, api_open=config.api).launch(share=config.colab)
|
506 |
else:
|
507 |
+
app.queue(max_size=20, api_open=config.api).launch(share=True)
|