Skip to content

Commit

Permalink
CLN: Replace incorrect GH#5667 with GH#5567 (#48177)
Browse files Browse the repository at this point in the history
Replace incorrect GH#5667 with GH#5567
  • Loading branch information
tomaarsen authored Aug 20, 2022
1 parent 30efa5f commit ae47909
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit ae47909

Please sign in to comment.