Skip to content

Commit 2a3f6c4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0eb5bb6 commit 2a3f6c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/isolated/check_for_client_response_leak.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ async def fetch_stream(url: str) -> None:
3333
with contextlib.suppress(ClientError):
3434
await session.get(url)
3535

36-
client_task = asyncio.create_task(fetch_stream(f"http://localhost:{port}/stream"))
36+
client_task = asyncio.create_task(
37+
fetch_stream(f"http://localhost:{port}/stream")
38+
)
3739
await client_task
3840
gc.collect()
3941
client_response_present = any(

0 commit comments

Comments
 (0)