Browse Source

[tasks] Fix typing for tasks.SleepHandle.future set calls

pull/9678/head
Thanos 1 year ago
committed by GitHub
parent
commit
9b9c93ad49
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      discord/ext/tasks/__init__.py

4
discord/ext/tasks/__init__.py

@ -111,12 +111,12 @@ class SleepHandle:
self.loop: asyncio.AbstractEventLoop = loop
self.future: asyncio.Future[None] = loop.create_future()
relative_delta = discord.utils.compute_timedelta(dt)
self.handle = loop.call_later(relative_delta, self.future.set_result, True)
self.handle = loop.call_later(relative_delta, self.future.set_result, None)
def recalculate(self, dt: datetime.datetime) -> None:
self.handle.cancel()
relative_delta = discord.utils.compute_timedelta(dt)
self.handle: asyncio.TimerHandle = self.loop.call_later(relative_delta, self.future.set_result, True)
self.handle: asyncio.TimerHandle = self.loop.call_later(relative_delta, self.future.set_result, None)
def wait(self) -> asyncio.Future[Any]:
return self.future

Loading…
Cancel
Save