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 Dec 9, 2024
1 parent d1a46e5 commit 5f7d6a0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pytest_aiohttp/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ async def aiohttp_server() -> Iterator[AiohttpServer]:
servers = []

async def go(
app: Application, *, host: str = "127.0.0.1", port: Optional[int] = None, **kwargs: Any
app: Application,
*,
host: str = "127.0.0.1",
port: Optional[int] = None,
**kwargs: Any,
) -> TestServer:
server = TestServer(app, host=host, port=port)
await server.start_server(**kwargs)
Expand Down

0 comments on commit 5f7d6a0

Please sign in to comment.