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 Jul 29, 2024
1 parent 2513b6e commit 03cc5d5
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 03cc5d5

Please sign in to comment.