Browse Source
[tasks] Fix typing for tasks.SleepHandle.future set calls
pull/9678/head
Thanos
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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 |
|
|
|