Skip to content

Commit a8486a1

Browse files
author
Christian-Sidak
committed
fix: prefix unused write_stream with underscore to satisfy pyright
1 parent f615b44 commit a8486a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/client/test_stdio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ async def test_stdio_client_invalid_utf8():
528528
items: list[SessionMessage | Exception] = []
529529

530530
with anyio.fail_after(5.0):
531-
async with stdio_client(server_params) as (read_stream, write_stream):
531+
async with stdio_client(server_params) as (read_stream, _write_stream):
532532
async for item in read_stream:
533533
items.append(item)
534534
if len(items) >= 2:

0 commit comments

Comments
 (0)