diff options
| author | Hornwitser <[email protected]> | 2018-06-22 14:47:56 +0200 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-08-22 21:43:51 -0400 |
| commit | 119c5a0618c82b7f425a59e2e6a8c5ce35c48a37 (patch) | |
| tree | 5dcb485ece928adbc2886c0eebd5fcde7be8093b /discord/utils.py | |
| parent | [lint] Remove unused imports (diff) | |
| download | discord.py-119c5a0618c82b7f425a59e2e6a8c5ce35c48a37.tar.xz discord.py-119c5a0618c82b7f425a59e2e6a8c5ce35c48a37.zip | |
[lint] Remove unused variables
Left over from various refactoring and rewrites.
Diffstat (limited to 'discord/utils.py')
| -rw-r--r-- | discord/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/utils.py b/discord/utils.py index 5c939922..b4a79d67 100644 --- a/discord/utils.py +++ b/discord/utils.py @@ -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() |