Skip to content

Commit

Permalink
CI: Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl committed Dec 9, 2023
1 parent ee6a062 commit 2ce723f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/arrays/datetimelike.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ def isin(self, values: ArrayLike) -> npt.NDArray[np.bool_]:
]
if values.dtype == object:
values = lib.maybe_convert_objects(
values,
values, # type: ignore[arg-type]
convert_non_numeric=True,
dtype_if_all_nat=self.dtype,
)
Expand Down

0 comments on commit 2ce723f

Please sign in to comment.