We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e338f0 commit 31e3237Copy full SHA for 31e3237
pandas/core/frame.py
@@ -14209,7 +14209,7 @@ def isin(
14209
result = self.isin(values.to_dict("list"))
14210
else:
14211
if not (values.columns.is_unique and values.index.is_unique):
14212
- raise ValueError("cannot compute isin with a duplicate axis.")
+ raise ValueError("cannot compute isin with a duplicate axis")
14213
result = self.eq(values.reindex_like(self))
14214
14215
if not is_list_like(values):
0 commit comments