From 3ecb1ae323f54395dcb37dee713f59db3aed91f9 Mon Sep 17 00:00:00 2001 From: Tom Aarsen <37621491+tomaarsen@users.noreply.github.com> Date: Sat, 20 Aug 2022 14:32:16 +0200 Subject: [PATCH] CLN: Replace incorrect GH#5667 with GH#5567 (#48177) Replace incorrect GH#5667 with GH#5567 --- pandas/core/indexing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py index d7f7941f017de..c030647297b9e 100644 --- a/pandas/core/indexing.py +++ b/pandas/core/indexing.py @@ -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):