Skip to content

Commit

Permalink
Remove extra MultiDictProxy wrapper from BaseRequest.query (#…
Browse files Browse the repository at this point in the history
…9098)

(cherry picked from commit 94685fb)
  • Loading branch information
bdraco authored and patchback[bot] committed Sep 10, 2024
1 parent 4b2ac73 commit be5d139
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 be5d139

Please sign in to comment.