Skip to content

Commit

Permalink
STY: fstrings, repr (pandas-dev#30093)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaharNaveh authored and proost committed Dec 19, 2019
1 parent 335be71 commit 24d9bef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/io/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _get_skiprows(skiprows):
elif skiprows is None:
return 0
raise TypeError(
"%r is not a valid type for skipping rows" % type(skiprows).__name__
f"'{type(skiprows).__name__}' is not a valid type for skipping rows"
)


Expand Down Expand Up @@ -133,7 +133,7 @@ def _read(obj):
except (TypeError, ValueError):
pass
else:
raise TypeError("Cannot read object of type %r" % type(obj).__name__)
raise TypeError(f"Cannot read object of type '{type(obj).__name__}'")
return text


Expand Down

0 comments on commit 24d9bef

Please sign in to comment.