Skip to content

Commit

Permalink
[PR #9098/94685fb6 backport][3.11] Remove extra MultiDictProxy wr…
Browse files Browse the repository at this point in the history
…apper from ``BaseRequest.query`` (#9113)

**This is a backport of PR #9098 as merged into master
(94685fb).**

Co-authored-by: J. Nick Koston <nick@koston.org>
  • Loading branch information
patchback[bot] and bdraco authored Sep 12, 2024
1 parent 295ed82 commit 5ad9ed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/web_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ def raw_path(self) -> str:
@reify
def query(self) -> "MultiMapping[str]":
"""A multidict with all the variables in the query string."""
return MultiDictProxy(self._rel_url.query)
return self._rel_url.query

@reify
def query_string(self) -> str:
Expand Down

0 comments on commit 5ad9ed2

Please sign in to comment.