Skip to content

Commit 4ca61b8

Browse files
added type ignore
1 parent 3884d1f commit 4ca61b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_testing.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -677,8 +677,8 @@ def _get_ilevel_values(index, level):
677677

678678
# MultiIndex special comparison for little-friendly error messages
679679
if left.nlevels > 1:
680-
left = cast(MultiIndex, left)
681-
right = cast(MultiIndex, right)
680+
left = cast(MultiIndex, left) # type: ignore
681+
right = cast(MultiIndex, right) # type: ignore
682682

683683
for level in range(left.nlevels):
684684
# cannot use get_level_values here because it can change dtype

0 commit comments

Comments
 (0)