Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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()
|
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)
|