Skip to content

Commit 8496163

Browse files
Use _ for unused variables
Co-authored-by: Jacob Tomlinson <jacobtomlinson@users.noreply.github.com>
1 parent 3176491 commit 8496163

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distributed/tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6428,7 +6428,7 @@ async def test_as_completed_async_for_results(c, s, a, b):
64286428
results = []
64296429

64306430
async def f():
6431-
async for _future, result in ac:
6431+
async for _, result in ac:
64326432
results.append(result)
64336433

64346434
await f()

0 commit comments

Comments
 (0)