Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/quart/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ def _split_blueprint_path(name: str) -> List[str]:
return bps


def abort(code: int, *args: Any, **kwargs: Any) -> NoReturn: # type: ignore[misc]
def abort(code: int | Response, *args: Any, **kwargs: Any) -> NoReturn:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think Werkzeug's aborter can accept a Quart Response. I think this part of the API is unhelpful - what use case do you have in mind?

"""Raise an HTTPException for the given status code."""
if current_app:
current_app.aborter(code, *args, **kwargs)
Expand Down