Browse Source

Use create_future wrapper for initially created Future.

pull/449/merge
Rapptz 8 years ago
parent
commit
cadf6960b7
  1. 2
      discord/shard.py

2
discord/shard.py

@ -43,7 +43,7 @@ class Shard:
self.ws = ws
self._client = client
self.loop = self._client.loop
self._current = asyncio.Future(loop=self.loop)
self._current = compat.create_future(self.loop)
self._current.set_result(None) # we just need an already done future
@property

Loading…
Cancel
Save