Josh
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
0 deletions
-
discord/utils.py
|
|
@ -690,6 +690,16 @@ def compute_timedelta(dt: datetime.datetime) -> float: |
|
|
|
return max((dt - now).total_seconds(), 0) |
|
|
|
|
|
|
|
|
|
|
|
@overload |
|
|
|
async def sleep_until(when: datetime.datetime, result: T) -> T: |
|
|
|
... |
|
|
|
|
|
|
|
|
|
|
|
@overload |
|
|
|
async def sleep_until(when: datetime.datetime) -> None: |
|
|
|
... |
|
|
|
|
|
|
|
|
|
|
|
async def sleep_until(when: datetime.datetime, result: Optional[T] = None) -> Optional[T]: |
|
|
|
"""|coro| |
|
|
|
|
|
|
|