@@ -594,7 +594,7 @@ from numpy.matrixlib import (
594594 matrix ,
595595)
596596
597- __all__ = [ # noqa: RUF022
597+ __all__ = [
598598 # __numpy_submodules__
599599 "char" , "core" , "ctypeslib" , "dtypes" , "exceptions" , "f2py" , "fft" , "lib" , "linalg" ,
600600 "ma" , "polynomial" , "random" , "rec" , "strings" , "test" , "testing" , "typing" ,
@@ -876,7 +876,7 @@ type _CastingKind = L["no", "equiv", "safe", "same_kind", "same_value", "unsafe"
876876
877877type _OrderKACF = L ["K" , "A" , "C" , "F" ] | None
878878type _OrderACF = L ["A" , "C" , "F" ] | None
879- type _OrderCF = L ["C" , "F" ] | None # noqa: PYI047
879+ type _OrderCF = L ["C" , "F" ] | None
880880
881881type _ModeKind = L ["raise" , "wrap" , "clip" ]
882882type _PartitionKind = L ["introselect" ]
@@ -2767,9 +2767,9 @@ class ndarray(_ArrayOrScalarCommon, Generic[_ShapeT_co, _DTypeT_co]):
27672767 @overload
27682768 def __abs__ [ArrayT : NDArray [bool_ | integer | floating | timedelta64 | object_ ]](self : ArrayT , / ) -> ArrayT : ...
27692769
2770- def __invert__ [ArrayT : NDArray [bool_ | integer | object_ ]](self : ArrayT , / ) -> ArrayT : ... # noqa: PYI019
2771- def __neg__ [ArrayT : _ArrayNumeric ](self : ArrayT , / ) -> ArrayT : ... # noqa: PYI019
2772- def __pos__ [ArrayT : _ArrayNumeric ](self : ArrayT , / ) -> ArrayT : ... # noqa: PYI019
2770+ def __invert__ [ArrayT : NDArray [bool_ | integer | object_ ]](self : ArrayT , / ) -> ArrayT : ...
2771+ def __neg__ [ArrayT : _ArrayNumeric ](self : ArrayT , / ) -> ArrayT : ...
2772+ def __pos__ [ArrayT : _ArrayNumeric ](self : ArrayT , / ) -> ArrayT : ...
27732773
27742774 # Binary ops
27752775
0 commit comments