CI: Fix mypy (#56428) · pandas-dev/pandas@f0b61c5 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit f0b61c5

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -770,7 +770,7 @@ def isin(self, values: ArrayLike) -> npt.NDArray[np.bool_]:
770 770 ]
771 771 if values.dtype == object:
772 772 values = lib.maybe_convert_objects(
773 -values,
773 +values, # type: ignore[arg-type]
774 774 convert_non_numeric=True,
775 775 dtype_if_all_nat=self.dtype,
776 776 )