Skip to content

Commit 145807f

Browse files
committed
fix pyright
1 parent fdbe5f0 commit 145807f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas-stubs/core/indexes/multi.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@ class MultiIndex(Index):
170170
self, values: Iterable[Any], level: Level
171171
) -> np_1darray_bool: ... # pyrefly: ignore[bad-override]
172172
@overload
173-
def isin(
173+
def isin( # pyright: ignore[reportIncompatibleMethodOverride]
174174
self, values: Iterable[Iterable[Any]], level: None = None
175-
) -> np_1darray_bool: ... # pyright: ignore[reportIncompatibleMethodOverride]
175+
) -> np_1darray_bool: ...
176176
def set_names(
177177
self,
178178
names: Hashable | Sequence[Hashable] | Mapping[Any, Hashable],

0 commit comments

Comments
 (0)