Phil Jones
Phil Jones
I think this is expected and teardown_websocket is what you are looking for
Thanks, this was a bug fixed in 04d5a27b969977db529dd6d68539bff4750017f6
Thanks, I've taken a slightly different approach in fbcc9c304ae20de4c915fab844fda29745f52ae2
Should be fixed by 4cf352890e6869bfbc0940e75420ea897fa92518
I think it is, ```python from quart.views import MethodView class UserView(MethodView): decorators = [validate_response(UserResponse)] methods = ["GET"] async def get(self): user = db.get_user() return user.model_dump() ``` As per https://flask.palletsprojects.com/en/stable/views/#view-decorators. Please...
Thanks, fixed in 07a7b14d199acb0392e957d5a48fd0a6cc996900
I've added in 7bdca945cc75f675d00e385c9928addd06407fbe, please let me know if it isn't sufficient for the need
Yea, I can also change the pre-commit and publish workflows to use shared actions. If we like this pattern?
Added pre-commit and build actions - will clean up and fix if we like this pattern.
Agree, app.errorhandler is the correct solution to this problem.