[lint] Remove unused variables

Left over from various refactoring and rewrites.
This commit is contained in:
Hornwitser
2018-06-22 14:47:56 +02:00
committed by Rapptz
parent d58fc0ccee
commit 119c5a0618
7 changed files with 9 additions and 10 deletions

View File

@ -281,7 +281,7 @@ async def async_all(gen, *, check=_isawaitable):
return True
async def sane_wait_for(futures, *, timeout, loop):
done, pending = await asyncio.wait(futures, timeout=timeout, loop=loop)
_, pending = await asyncio.wait(futures, timeout=timeout, loop=loop)
if len(pending) != 0:
raise asyncio.TimeoutError()