File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
## Fixed
3
3
- Asset blueprint takes routes prefix into it's static path. [ #547 ] ( https://github.com/plotly/dash/pull/547 )
4
4
- Asset url path no longer strip routes from requests. [ #547 ] ( https://github.com/plotly/dash/pull/547 )
5
+ - Remove print statement from PreventUpdate error handler. [ #548 ] ( https://github.com/plotly/dash/pull/548 )
5
6
6
7
## Changed
7
8
- ` assets_folder ` argument now default to 'assets' [ #547 ] ( https://github.com/plotly/dash/pull/547 )
Original file line number Diff line number Diff line change @@ -169,10 +169,9 @@ def __init__(
169
169
Compress (self .server )
170
170
171
171
@self .server .errorhandler (exceptions .PreventUpdate )
172
- def _handle_error (error ):
172
+ def _handle_error (_ ):
173
173
"""Handle a halted callback and return an empty 204 response"""
174
- print (error , file = sys .stderr )
175
- return ('' , 204 )
174
+ return '' , 204
176
175
177
176
# static files from the packages
178
177
self .css = Css ()
You can’t perform that action at this time.
0 commit comments