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 7e72896 commit d1e527dCopy full SHA for d1e527d
pandas/core/frame.py
@@ -14036,7 +14036,7 @@ def isin(
14036
result = self.isin(values.to_dict("list"))
14037
else:
14038
if not (values.columns.is_unique and values.index.is_unique):
14039
- raise ValueError("cannot compute isin with a duplicate axis.")
+ raise ValueError("cannot compute isin with a duplicate axis")
14040
result = self.eq(values.reindex_like(self))
14041
14042
if not is_list_like(values):
0 commit comments