Skip to content

Commit c8f854c

Browse files
committed
remove unused type
1 parent 10debda commit c8f854c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ def isin(comps: ListLike, values: ListLike) -> npt.NDArray[np.bool_]:
508508

509509
try:
510510
src = comps.dtype # type: ignore[union-attr]
511-
tar = values.dtype # type: ignore[union-attr]
511+
tar = values.dtype
512512
# check only valid dtypes related to implicit conversion to float64
513513
# other data types derived from 64-bit integers such as U/Int64Dtype
514514
# should also work

0 commit comments

Comments
 (0)