Skip to content

Commit a7c82de

Browse files
committed
use ListLike
1 parent b2d4312 commit a7c82de

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas-stubs/core/indexes/multi.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ from pandas.core.indexes.base import Index
1717
from typing_extensions import Self
1818

1919
from pandas._typing import (
20-
AnyArrayLike,
2120
Dtype,
2221
DtypeArg,
2322
HashableT,
@@ -42,7 +41,7 @@ class MultiIndex(Index[Any]):
4241
@classmethod
4342
def from_arrays(
4443
cls,
45-
arrays: SequenceNotStr[SequenceNotStr[Hashable] | AnyArrayLike],
44+
arrays: SequenceNotStr[ListLike],
4645
sortorder: int | None = ...,
4746
names: SequenceNotStr[Hashable] = ...,
4847
) -> Self: ...

0 commit comments

Comments
 (0)