Skip to content

Commit

Permalink
Fix issue probably-meant-fstring found at https://codereview.doctor (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
code-review-doctor committed Apr 25, 2022
1 parent a045480 commit 0215cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/client_reqrep.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def __init__(
if match:
raise ValueError(
f"Method cannot contain non-token characters {method!r} "
"(found at least {match.group()!r})"
f"(found at least {match.group()!r})"
)
assert isinstance(url, URL), url
assert isinstance(proxy, (URL, type(None))), proxy
Expand Down

0 comments on commit 0215cdd

Please sign in to comment.