Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4ebd93b

Browse files
committedMar 19, 2025·
fix type annotation
1 parent 2058120 commit 4ebd93b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pandas/core/ops/invalid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
def invalid_comparison(
2727
left: ArrayLike,
28-
right: ArrayLike | Scalar,
28+
right: ArrayLike | list | Scalar,
2929
op: Callable[[Any, Any], bool],
3030
) -> npt.NDArray[np.bool_]:
3131
"""

0 commit comments

Comments
 (0)
Please sign in to comment.