AvaLovelace commited on
Commit
2f33160
·
verified ·
1 Parent(s): e812854

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -105,6 +105,8 @@ def main():
105
 
106
  concurrency_limit = 1 if os.environ.get('CONCURRENCY_LIMIT') is None else int(os.environ.get('CONCURRENCY_LIMIT'))
107
  demo.queue(default_concurrency_limit=concurrency_limit)
 
 
108
  demo.launch(share=True)
109
 
110
 
 
105
 
106
  concurrency_limit = 1 if os.environ.get('CONCURRENCY_LIMIT') is None else int(os.environ.get('CONCURRENCY_LIMIT'))
107
  demo.queue(default_concurrency_limit=concurrency_limit)
108
+
109
+ print("Launching demo...")
110
  demo.launch(share=True)
111
 
112