Skip to content

Commit 5f7d6a0

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d1a46e5 commit 5f7d6a0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pytest_aiohttp/plugin.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@ async def aiohttp_server() -> Iterator[AiohttpServer]:
8282
servers = []
8383

8484
async def go(
85-
app: Application, *, host: str = "127.0.0.1", port: Optional[int] = None, **kwargs: Any
85+
app: Application,
86+
*,
87+
host: str = "127.0.0.1",
88+
port: Optional[int] = None,
89+
**kwargs: Any,
8690
) -> TestServer:
8791
server = TestServer(app, host=host, port=port)
8892
await server.start_server(**kwargs)

0 commit comments

Comments
 (0)