Skip to content

Commit

Permalink
CLN: Replace incorrect GH#5667 with GH#5567 (pandas-dev#48177)
Browse files Browse the repository at this point in the history
Replace incorrect GH#5667 with GH#5567
  • Loading branch information
tomaarsen authored and CloseChoice committed Aug 21, 2022
1 parent 54bd158 commit c1ff44a
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 c1ff44a

Please sign in to comment.