We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0477e4 commit 0bc2f6aCopy full SHA for 0bc2f6a
pandas-stubs/_typing.pyi
@@ -85,13 +85,10 @@ HashableT5 = TypeVar("HashableT5", bound=Hashable)
85
86
# array-like
87
88
-ArrayLike: TypeAlias = ExtensionArray | np.ndarray[tuple[int], np.dtype[Any]]
+ArrayLike: TypeAlias = ExtensionArray | npt.NDArray[Any]
89
AnyArrayLike: TypeAlias = ArrayLike | Index | Series
90
AnyArrayLikeInt: TypeAlias = (
91
- IntegerArray
92
- | Index[int]
93
- | Series[int]
94
- | np.ndarray[tuple[int], np.dtype[np.integer]]
+ IntegerArray | Index[int] | Series[int] | npt.NDArray[np.integer]
95
)
96
97
# list-like
0 commit comments