Skip to content

Commit 3554dd9

Browse files
committed
Typo; retrigger CI after circle-timeout
1 parent 12d999d commit 3554dd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3898,7 +3898,7 @@ def set_index(self, keys, drop=True, append=False, inplace=False,
38983898
if not isinstance(x, (Series, Index, MultiIndex,
38993899
list, np.ndarray))]
39003900
if any(x not in self for x in col_labels):
3901-
# if there are any invalid labels for self, we raise a KeyError
3901+
# if there are any labels that are invalid, we raise a KeyError
39023902
missing = [x for x in col_labels if x not in self]
39033903
raise KeyError('{}'.format(missing))
39043904
elif len(set(col_labels)) < len(col_labels):

0 commit comments

Comments
 (0)