DawnC commited on
Commit
7af5bf2
1 Parent(s): 061a0fc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -417,7 +417,7 @@ def show_details_html(choice, previous_output, initial_state):
417
  return format_warning_html(error_msg), gr.update(visible=True), initial_state
418
 
419
  def main():
420
- with gr.Blocks(css=get_css_styles(), responsive=True) as iface:
421
  # Header HTML
422
 
423
  gr.HTML("""
@@ -500,4 +500,4 @@ def main():
500
 
501
  if __name__ == "__main__":
502
  iface = main()
503
- iface.launch()
 
417
  return format_warning_html(error_msg), gr.update(visible=True), initial_state
418
 
419
  def main():
420
+ with gr.Blocks(css=get_css_styles()) as iface:
421
  # Header HTML
422
 
423
  gr.HTML("""
 
500
 
501
  if __name__ == "__main__":
502
  iface = main()
503
+ iface.launch(share=True)