Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 5, 2024
1 parent d753e51 commit c9ad94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_aiohttp/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ async def go(
elif isinstance(__param, BaseTestServer):
client = aiohttp_client_cls(__param, **kwargs)
else:
raise ValueError("Unknown argument type: %r" % type(__param))
raise ValueError(f"Unknown argument type: {type(__param)!r}")

await client.start_server()
clients.append(client)
Expand Down

0 comments on commit c9ad94a

Please sign in to comment.