diff --git a/stdlib/functools.pyi b/stdlib/functools.pyi index 89560aba3..f96147bae 100644 --- a/stdlib/functools.pyi +++ b/stdlib/functools.pyi @@ -165,7 +165,7 @@ if sys.version_info >= (3, 8): attrname: str | None def __init__(self, func: Callable[[Any], _T]) -> None: ... @overload - def __get__(self, instance: None, owner: type[Any] | None = None) -> cached_property[_T]: ... + def __get__(self, instance: None, owner: type[Any] | None = None) -> Self: ... @overload def __get__(self, instance: object, owner: type[Any] | None = None) -> _T: ... def __set_name__(self, owner: type[Any], name: str) -> None: ...