Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ef5b4b6

Browse files
authored
setattr: Any --> object (#5877)
1 parent ee48730 commit ef5b4b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stdlib/builtins.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ def round(number: SupportsRound[Any]) -> int: ...
12841284
def round(number: SupportsRound[Any], ndigits: None) -> int: ...
12851285
@overload
12861286
def round(number: SupportsRound[_T], ndigits: SupportsIndex) -> _T: ...
1287-
def setattr(__obj: Any, __name: str, __value: Any) -> None: ...
1287+
def setattr(__obj: object, __name: str, __value: Any) -> None: ...
12881288
@overload
12891289
def sorted(__iterable: Iterable[SupportsLessThanT], *, key: None = ..., reverse: bool = ...) -> List[SupportsLessThanT]: ...
12901290
@overload

0 commit comments

Comments
 (0)