Update pyright to 1.1.289

This commit is contained in:
Rapptz
2023-01-16 21:54:57 -05:00
parent bf860b0b07
commit 3ff88db768
7 changed files with 9 additions and 9 deletions

View File

@ -619,7 +619,7 @@ class Loop(Generic[LF]):
if not inspect.iscoroutinefunction(coro):
raise TypeError(f'Expected coroutine function, received {coro.__class__.__name__}.')
self._error = coro
self._error = coro # type: ignore
return coro
def _get_next_sleep_time(self, now: datetime.datetime = MISSING) -> datetime.datetime: