Skip to content

Commit 2a76785

Browse files
committed
Enforce zip strict argument
1 parent 32ea61d commit 2a76785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/dtypes/missing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def _array_equivalent_object(
514514
left_remaining = left
515515
right_remaining = right
516516

517-
for left_value, right_value in zip(left_remaining, right_remaining):
517+
for left_value, right_value in zip(left_remaining, right_remaining, strict=True):
518518
if left_value is NaT and right_value is not NaT:
519519
return False
520520

0 commit comments

Comments
 (0)