Skip to content

Commit ba93833

Browse files
Changing ValueError documentation
1 parent 5bf89a8 commit ba93833

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ def _validate_usecols(usecols, names):
10851085
10861086
Raises
10871087
------
1088-
ValueError : Detailing which usecols are missing, if any.
1088+
ValueError : Columns were missing. Error message will list them.
10891089
"""
10901090
missing = [c for c in usecols if c not in names]
10911091
if len(missing) > 0:

0 commit comments

Comments
 (0)