Lisandro commited on
Commit
90d9148
·
1 Parent(s): da296d1

feat: Update demo.launch() in app.py to show error message

The code changes modify the `demo.launch()` function in `app.py` to include the `show_error=True` parameter. This ensures that any error that occurs during the launch of the demo is displayed to the user.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -65,5 +65,5 @@ with gr.Blocks() as demo:
65
  outputs=output
66
  )
67
 
68
- demo.launch()
69
 
 
65
  outputs=output
66
  )
67
 
68
+ demo.launch(show_error=True)
69