mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
setattr: Any --> object (#5877)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user