Skip to content

Commit fa3c401

Browse files
committed
fix: Sequence[Index] instead of Sequence
1 parent 67e6bde commit fa3c401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas-stubs/core/indexes/base.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ class Index(IndexOpsMixin[S1]):
407407
@overload
408408
def append(self, other: Index[S2]) -> Index[S1 | S2]: ...
409409
@overload
410-
def append(self, other: Sequence) -> Index: ...
410+
def append(self, other: Sequence[Index]) -> Index: ...
411411
def putmask(self, mask, value): ...
412412
def equals(self, other) -> bool: ...
413413
@final

0 commit comments

Comments
 (0)