From 3c90f16bf07ae7455df894244f1e5fef22b15664 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 23 May 2021 21:30:44 -0400 Subject: [PATCH] Fix cached_slot_property typings again --- discord/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/discord/utils.py b/discord/utils.py index 22a0c40c9..3682cffd9 100644 --- a/discord/utils.py +++ b/discord/utils.py @@ -127,7 +127,6 @@ else: T = TypeVar('T') T_co = TypeVar('T_co', covariant=True) _Iter = Union[Iterator[T], AsyncIterator[T]] -CSP = TypeVar('CSP', bound='CachedSlotProperty') class CachedSlotProperty(Generic[T, T_co]): @@ -137,7 +136,7 @@ class CachedSlotProperty(Generic[T, T_co]): self.__doc__ = getattr(function, '__doc__') @overload - def __get__(self: CSP, instance: None, owner: Type[T]) -> CSP: + def __get__(self, instance: None, owner: Type[T]) -> CachedSlotProperty[T, T_co]: ... @overload