Skip to content
Closed
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 tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async def test_url_for_root_path(app: Quart) -> None:
async def test_stream_with_context() -> None:
app = Quart(__name__)

@app.route("/") # type: ignore
@app.route("/")
async def index() -> AsyncGenerator[bytes, None]:
@stream_with_context
async def generator() -> AsyncGenerator[bytes, None]:
Expand Down
Loading