DazDin commited on
Commit
1ec15ef
·
verified ·
1 Parent(s): 5557a04
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -63,8 +63,11 @@ def make_me():
63
  with gr.Row():
64
  gr.HTML("")
65
 
66
- with gr.Blocks(theme="DazDin/Go_Theme") as demo:
67
- make_me()
 
 
 
68
 
69
  demo.queue(concurrency_count=100)
70
  demo.launch()
 
63
  with gr.Row():
64
  gr.HTML("")
65
 
66
+ try:
67
+ with gr.Blocks(theme="DazDin/Go_Theme") as demo:
68
+ make_me()
69
+ except Exception as e:
70
+ print(f"An error occurred: {e}")
71
 
72
  demo.queue(concurrency_count=100)
73
  demo.launch()