Skip to content

Commit 924f665

Browse files
committed
fix pre-commit
1 parent eaba844 commit 924f665

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
@@ -525,7 +525,7 @@ def isin(comps: ListLike, values: ListLike) -> npt.NDArray[np.bool_]:
525525
# invalid comparison
526526
is_implicit_conversion_to_float64 = False
527527

528-
if (is_implicit_conversion_to_float64):
528+
if is_implicit_conversion_to_float64:
529529
# GH#46485 Use object to avoid upcast to float64 later
530530
# TODO: Share with _find_common_type_compat
531531
values = construct_1d_object_array_from_listlike(orig_values)

0 commit comments

Comments
 (0)