Skip to content

Commit f0b61c5

Browse files
authored
CI: Fix mypy (#56428)
1 parent ee6a062 commit f0b61c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/datetimelike.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ def isin(self, values: ArrayLike) -> npt.NDArray[np.bool_]:
770770
]
771771
if values.dtype == object:
772772
values = lib.maybe_convert_objects(
773-
values,
773+
values, # type: ignore[arg-type]
774774
convert_non_numeric=True,
775775
dtype_if_all_nat=self.dtype,
776776
)

0 commit comments

Comments
 (0)