We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f42be06 commit 2075d20Copy full SHA for 2075d20
pandas/_typing.py
@@ -91,7 +91,7 @@
91
Suffixes = Tuple[str, str]
92
Ordered = Optional[bool]
93
JSONSerializable = Optional[Union[PythonScalar, List, Dict]]
94
-Axes = Collection
+Axes = Collection[Any]
95
96
# dtypes
97
NpDtype = Union[str, np.dtype]
pandas/core/dtypes/base.py
@@ -141,7 +141,7 @@ def na_value(self) -> object:
141
return np.nan
142
143
@property
144
- def type(self) -> Type:
+ def type(self) -> Type[Any]:
145
"""
146
The scalar type for the array, e.g. ``int``
147
0 commit comments