Skip to content

Commit b4d4e38

Browse files
committed
Typo; retrigger CI after circle-timeout
1 parent ec85371 commit b4d4e38

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
@@ -3983,7 +3983,7 @@ def set_index(self, keys, drop=True, append=False, inplace=False,
39833983
if not isinstance(x, (Series, Index, MultiIndex,
39843984
list, np.ndarray))]
39853985
if any(x not in self for x in col_labels):
3986-
# if there are any invalid labels for self, we raise a KeyError
3986+
# if there are any labels that are invalid, we raise a KeyError
39873987
missing = [x for x in col_labels if x not in self]
39883988
raise KeyError('{}'.format(missing))
39893989
elif len(set(col_labels)) < len(col_labels):

0 commit comments

Comments
 (0)