Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Commit 7475d99

Browse files
committed
remove unused variable to fix lint
1 parent 470aeb4 commit 7475d99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/asyncio/test_bidi_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ async def test_send_dead_rpc(self):
287287
bidi_rpc = bidi_async.AsyncBidiRpc(None)
288288
bidi_rpc.call = AsyncClosedCall(error)
289289

290-
with pytest.raises(ValueError) as exc_info:
290+
with pytest.raises(ValueError):
291291
await bidi_rpc.send(mock.sentinel.request)
292292

293293
@pytest.mark.asyncio

0 commit comments

Comments
 (0)