diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index fb1a559a3..93db44b0c 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -1284,7 +1284,7 @@ def round(number: SupportsRound[Any]) -> int: ... def round(number: SupportsRound[Any], ndigits: None) -> int: ... @overload def round(number: SupportsRound[_T], ndigits: SupportsIndex) -> _T: ... -def setattr(__obj: Any, __name: str, __value: Any) -> None: ... +def setattr(__obj: object, __name: str, __value: Any) -> None: ... @overload def sorted(__iterable: Iterable[SupportsLessThanT], *, key: None = ..., reverse: bool = ...) -> List[SupportsLessThanT]: ... @overload