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 3e29377 commit 16af7adCopy full SHA for 16af7ad
pandas/core/frame.py
@@ -14167,7 +14167,7 @@ def isin(
14167
result = self.isin(values.to_dict("list"))
14168
else:
14169
if not (values.columns.is_unique and values.index.is_unique):
14170
- raise ValueError("cannot compute isin with a duplicate axis")
+ raise ValueError("cannot compute isin with a duplicate axis.")
14171
result = self.eq(values.reindex_like(self))
14172
14173
if not is_list_like(values):
0 commit comments