lilblueyes commited on
Commit
0fd1a4f
·
1 Parent(s): 5d91112

Update Gradio launch parameters

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -324,8 +324,6 @@ DEFAULT_INTENT = {
324
 
325
  with gr.Blocks(
326
  title="SignSpeak Local",
327
- css=CUSTOM_CSS,
328
- theme=gr.themes.Base(),
329
  ) as demo:
330
  gr.HTML(
331
  """
@@ -455,4 +453,7 @@ with gr.Blocks(
455
 
456
 
457
  if __name__ == "__main__":
458
- demo.queue().launch()
 
 
 
 
324
 
325
  with gr.Blocks(
326
  title="SignSpeak Local",
 
 
327
  ) as demo:
328
  gr.HTML(
329
  """
 
453
 
454
 
455
  if __name__ == "__main__":
456
+ demo.queue().launch(
457
+ css=CUSTOM_CSS,
458
+ theme=gr.themes.Base(),
459
+ )