File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,17 +28,17 @@ class ABCMeta(type):
28
28
def register (cls : ABCMeta , subclass : type [_T ]) -> type [_T ]: ...
29
29
30
30
def abstractmethod (funcobj : _FuncT ) -> _FuncT : ...
31
- @deprecated ("Deprecated, use 'classmethod' with 'abstractmethod' instead" )
31
+ @deprecated ("Use 'classmethod' with 'abstractmethod' instead" )
32
32
class abstractclassmethod (classmethod [_T , _P , _R_co ]):
33
33
__isabstractmethod__ : Literal [True ]
34
34
def __init__ (self , callable : Callable [Concatenate [type [_T ], _P ], _R_co ]) -> None : ...
35
35
36
- @deprecated ("Deprecated, use 'staticmethod' with 'abstractmethod' instead" )
36
+ @deprecated ("Use 'staticmethod' with 'abstractmethod' instead" )
37
37
class abstractstaticmethod (staticmethod [_P , _R_co ]):
38
38
__isabstractmethod__ : Literal [True ]
39
39
def __init__ (self , callable : Callable [_P , _R_co ]) -> None : ...
40
40
41
- @deprecated ("Deprecated, use 'property' with 'abstractmethod' instead" )
41
+ @deprecated ("Use 'property' with 'abstractmethod' instead" )
42
42
class abstractproperty (property ):
43
43
__isabstractmethod__ : Literal [True ]
44
44
You can’t perform that action at this time.
0 commit comments