Skip to content

Commit 1f45969

Browse files
committed
Making the error text 'passes'
1 parent 75a1268 commit 1f45969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/formats/excel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def __init__(
566566
if cols is not None:
567567
# all missing, raise
568568
if not len(Index(cols).intersection(df.columns)):
569-
raise KeyError("Passed columns are not ALL present dataframe")
569+
raise KeyError("passes columns are not ALL present dataframe")
570570

571571
if len(Index(cols).intersection(df.columns)) != len(set(cols)):
572572
# Deprecated in GH#17295, enforced in 1.0.0

0 commit comments

Comments
 (0)