Skip to content

Commit 3e29377

Browse files
committed
fix: shell pr to rerun build
1 parent 87b00b4 commit 3e29377

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
@@ -14167,7 +14167,7 @@ def isin(
1416714167
result = self.isin(values.to_dict("list"))
1416814168
else:
1416914169
if not (values.columns.is_unique and values.index.is_unique):
14170-
raise ValueError("cannot compute isin with a duplicate axis.")
14170+
raise ValueError("cannot compute isin with a duplicate axis")
1417114171
result = self.eq(values.reindex_like(self))
1417214172
else:
1417314173
if not is_list_like(values):

0 commit comments

Comments
 (0)