[lint] Remove unused variables

Left over from various refactoring and rewrites.
This commit is contained in:
Hornwitser
2018-08-22 21:43:51 -04:00
committed by Rapptz
parent d58fc0ccee
commit 119c5a0618
7 changed files with 9 additions and 10 deletions
+1 -1
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()