Skip to content

Commit 3279cd1

Browse files
committed
mypy
1 parent 815e68f commit 3279cd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/indexes/test_indexes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def test_index_isin() -> None:
6868
check(assert_type(mi.isin({iter([3])}), np_1darray_bool), np_1darray_bool)
6969
if TYPE_CHECKING_INVALID_USAGE:
7070
mi.isin({3}) # type: ignore[arg-type] # pyright: ignore[reportArgumentType]
71-
mi.isin(iter([[3]])) # type: ignore[arg-type] # pyright: ignore[reportArgumentType]
71+
mi.isin(iter([[3]])) # type: ignore[call-overload] # pyright: ignore[reportArgumentType]
7272

7373

7474
def test_index_astype() -> None:

0 commit comments

Comments
 (0)