Skip to content

Commit

Permalink
pandas-dev#29886 - Replace rm -rf pandas/ for repr() on parses.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JvPy committed Dec 4, 2019
1 parent 04c0870 commit 182c68b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pandas/io/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -913,8 +913,8 @@ def _get_options_with_defaults(self, engine):
pass
else:
raise ValueError(
"The %r option is not supported with the"
" %r engine" % (argname, engine)
f"The {repr(argname)} option is not supported with the"
f" {repr(engine)} engine"
)
else:
value = _deprecated_defaults.get(argname, default)
Expand Down Expand Up @@ -3607,8 +3607,8 @@ def __init__(self, f, colspecs, delimiter, comment, skiprows=None, infer_nrows=1

if not isinstance(self.colspecs, (tuple, list)):
raise TypeError(
"column specifications must be a list or tuple, "
"input was a %r" % type(colspecs).__name__
f"column specifications must be a list or tuple, "
f"input was a {repr(type(colspecs).__name__)}"
)

for colspec in self.colspecs:
Expand Down

0 comments on commit 182c68b

Please sign in to comment.