Skip to content

Commit 96267bb

Browse files
committed
fix: black
1 parent 070a036 commit 96267bb

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

pandas-stubs/core/indexes/base.pyi

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -913,9 +913,7 @@ class Index(IndexOpsMixin[S1], ElementOpsMixin[S1]):
913913
self: Index[T_COMPLEX], other: np_ndarray_bool | Index[bool]
914914
) -> Index[T_COMPLEX]: ...
915915
@overload
916-
def __mul__(
917-
self: Index[bool], other: ScalarArrayIndexJustInt
918-
) -> Index[int]: ...
916+
def __mul__(self: Index[bool], other: ScalarArrayIndexJustInt) -> Index[int]: ...
919917
@overload
920918
def __mul__(
921919
self: Index[T_COMPLEX], other: ScalarArrayIndexJustInt
@@ -979,9 +977,7 @@ class Index(IndexOpsMixin[S1], ElementOpsMixin[S1]):
979977
self: Index[T_COMPLEX], other: np_ndarray_bool | Index[bool]
980978
) -> Index[T_COMPLEX]: ...
981979
@overload
982-
def __rmul__(
983-
self: Index[bool], other: ScalarArrayIndexJustInt
984-
) -> Index[int]: ...
980+
def __rmul__(self: Index[bool], other: ScalarArrayIndexJustInt) -> Index[int]: ...
985981
@overload
986982
def __rmul__(
987983
self: Index[T_COMPLEX], other: ScalarArrayIndexJustInt

0 commit comments

Comments
 (0)