The following raises the error ``` pandas.Series([0.1, 0.2], index=[1, 2]).loc[[2, 3, 2]] ``` whilst ``` pandas.Series([0.1, 0.2], index=[1, 2]).loc[[2, 2, 3]] ``` does not. Or is there something invalid with this code?