Fix more deprecation warnings

This commit is contained in:
Rapptz
2019-11-20 03:04:04 -05:00
parent 1b040fd4ba
commit 4ef0fb0d95
3 changed files with 6 additions and 3 deletions

View File

@ -289,7 +289,7 @@ class AutoShardedClient(Client):
except Exception:
pass
to_close = [shard.ws.close() for shard in self.shards.values()]
to_close = [asyncio.ensure_future(shard.ws.close(), loop=self.loop) for shard in self.shards.values()]
if to_close:
await asyncio.wait(to_close)