Skip to content

Commit

Permalink
Fix non-subscriptable MultiDictProxy with old multidict
Browse files Browse the repository at this point in the history
fixes #1105
  • Loading branch information
bdraco committed Sep 5, 2024
1 parent bfef130 commit bc4a0aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarl/_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ def path(self) -> str:
return self._PATH_UNQUOTER(self.raw_path)

@cached_property
def query(self) -> MultiDictProxy[str]:
def query(self) -> "MultiDictProxy[str]":
"""A MultiDictProxy representing parsed query parameters in decoded
representation.
Expand Down

0 comments on commit bc4a0aa

Please sign in to comment.