safinal commited on
Commit
455daca
Β·
verified Β·
1 Parent(s): 0793a94

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -172,4 +172,8 @@ demo = gr.Interface(
172
  )
173
 
174
  if __name__ == "__main__":
175
- demo.launch(share=True)
 
 
 
 
 
172
  )
173
 
174
  if __name__ == "__main__":
175
+ try:
176
+ demo.launch()
177
+ except Exception as e:
178
+ print(f"Error launching app: {str(e)}")
179
+ raise