Skip to content

Commit 31e3237

Browse files
committed
fix: shell pr to rerun build
1 parent 2e338f0 commit 31e3237

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14209,7 +14209,7 @@ def isin(
1420914209
result = self.isin(values.to_dict("list"))
1421014210
else:
1421114211
if not (values.columns.is_unique and values.index.is_unique):
14212-
raise ValueError("cannot compute isin with a duplicate axis.")
14212+
raise ValueError("cannot compute isin with a duplicate axis")
1421314213
result = self.eq(values.reindex_like(self))
1421414214
else:
1421514215
if not is_list_like(values):

0 commit comments

Comments
 (0)