community[patch]: Release 0.2.11 (#24989)

This commit is contained in:
Bagatur
2024-08-02 13:08:44 -07:00
committed by GitHub
parent c2538e7834
commit 8e2316b8c2
12 changed files with 540 additions and 561 deletions

View File

@@ -1794,7 +1794,7 @@ class _CachedAwaitable:
def __await__(self) -> Generator:
if self.result is _unset:
self.result = yield from self.awaitable.__await__()
return self.result
return self.result # type: ignore
def _reawaitable(func: Callable) -> Callable: