@@ -697,35 +697,35 @@ class DataFrame(NDFrame, OpsMixin):
697
697
@overload
698
698
def drop (
699
699
self ,
700
- labels : Hashable | Sequence [Hashable ] | Index = ...,
700
+ labels : Hashable | Sequence [Hashable ] | Index [ Any ] = ...,
701
701
* ,
702
702
axis : Axis = ...,
703
- index : Hashable | Sequence [Hashable ] | Index = ...,
704
- columns : Hashable | Sequence [Hashable ] | Index = ...,
703
+ index : Hashable | Sequence [Hashable ] | Index [ Any ] = ...,
704
+ columns : Hashable | Sequence [Hashable ] | Index [ Any ] = ...,
705
705
level : Level | None = ...,
706
706
inplace : Literal [True ],
707
707
errors : IgnoreRaise = ...,
708
708
) -> None : ...
709
709
@overload
710
710
def drop (
711
711
self ,
712
- labels : Hashable | Sequence [Hashable ] | Index = ...,
712
+ labels : Hashable | Sequence [Hashable ] | Index [ Any ] = ...,
713
713
* ,
714
714
axis : Axis = ...,
715
- index : Hashable | Sequence [Hashable ] | Index = ...,
716
- columns : Hashable | Sequence [Hashable ] | Index = ...,
715
+ index : Hashable | Sequence [Hashable ] | Index [ Any ] = ...,
716
+ columns : Hashable | Sequence [Hashable ] | Index [ Any ] = ...,
717
717
level : Level | None = ...,
718
718
inplace : Literal [False ] = ...,
719
719
errors : IgnoreRaise = ...,
720
720
) -> DataFrame : ...
721
721
@overload
722
722
def drop (
723
723
self ,
724
- labels : Hashable | Sequence [Hashable ] | Index = ...,
724
+ labels : Hashable | Sequence [Hashable ] | Index [ Any ] = ...,
725
725
* ,
726
726
axis : Axis = ...,
727
- index : Hashable | Sequence [Hashable ] | Index = ...,
728
- columns : Hashable | Sequence [Hashable ] | Index = ...,
727
+ index : Hashable | Sequence [Hashable ] | Index [ Any ] = ...,
728
+ columns : Hashable | Sequence [Hashable ] | Index [ Any ] = ...,
729
729
level : Level | None = ...,
730
730
inplace : bool = ...,
731
731
errors : IgnoreRaise = ...,
0 commit comments