Skip to content

Commit c676cd3

Browse files
committed
Typo; retrigger CI after circle-timeout
1 parent 6687e6a commit c676cd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3872,7 +3872,7 @@ def set_index(self, keys, drop=True, append=False, inplace=False,
38723872
if not isinstance(x, (Series, Index, MultiIndex,
38733873
list, np.ndarray))]
38743874
if any(x not in self for x in col_labels):
3875-
# if there are any invalid labels for self, we raise a KeyError
3875+
# if there are any labels that are invalid, we raise a KeyError
38763876
missing = [x for x in col_labels if x not in self]
38773877
raise KeyError('{}'.format(missing))
38783878
elif len(set(col_labels)) < len(col_labels):

0 commit comments

Comments
 (0)