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 8c1a120 commit dc85974Copy full SHA for dc85974
pandas-stubs/core/base.pyi
@@ -17,6 +17,7 @@ from typing import (
17
18
from _typeshed import _T_contra
19
import numpy as np
20
+from numpy import typing as npt
21
from pandas.core.arraylike import OpsMixin
22
from pandas.core.arrays import ExtensionArray
23
from pandas.core.arrays.categorical import Categorical
@@ -174,7 +175,7 @@ NumListLike: TypeAlias = (
174
175
| np_ndarray_anyint
176
| np_ndarray_float
177
| np_ndarray_complex
- | dict[str, np_1darray[Any]]
178
+ | dict[str, npt.NDArray[Any]]
179
| Sequence[complex]
180
)
181
0 commit comments