mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Always use TypeAlias when assigning to Any (#8021)
This commit is contained in:
@@ -440,7 +440,13 @@ class _SpecState:
|
||||
|
||||
def mock_open(mock: Any | None = ..., read_data: Any = ...) -> Any: ...
|
||||
|
||||
PropertyMock = Any
|
||||
class PropertyMock(Mock):
|
||||
if sys.version_info >= (3, 8):
|
||||
def __get__(self: Self, obj: _T, obj_type: type[_T] | None = ...) -> Self: ...
|
||||
else:
|
||||
def __get__(self: Self, obj: _T, obj_type: type[_T] | None) -> Self: ...
|
||||
|
||||
def __set__(self, obj: Any, value: Any) -> None: ...
|
||||
|
||||
if sys.version_info >= (3, 7):
|
||||
def seal(mock: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user