Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLN: Replace incorrect GH#5667 with GH#5567 #48177

Merged
merged 1 commit into from
Aug 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas/core/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1257,7 +1257,7 @@ def _getitem_tuple(self, tup: tuple):
return self._getitem_tuple_same_dim(tup)

def _get_label(self, label, axis: int):
# GH#5667 this will fail if the label is not present in the axis.
# GH#5567 this will fail if the label is not present in the axis.
return self.obj.xs(label, axis=axis)

def _handle_lowerdim_multi_index_axis0(self, tup: tuple):
Expand Down