setattr: Any --> object (#5877)

This commit is contained in:
Akuli
2021-08-08 12:12:23 +03:00
committed by GitHub
parent ee487304d7
commit ef5b4b6820

View File

@@ -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