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 d1e527d commit 7decc57Copy full SHA for 7decc57
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