Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7106311

Browse files
committed
PEP8 fix for _axes.py
1 parent 1f8bad2 commit 7106311

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ def _plot_args_replacer(args, data):
6868
return ["y", "c"]
6969
else:
7070
warnings.warn(
71-
"Second argument {!r} is ambiguous: could be a color spec but "
72-
"is in data; using as data. Either rename the entry in data "
73-
"or use three arguments to plot.".format(args[1]),
71+
"Second argument {!r} is ambiguous: could be a color spec "
72+
"but is in data; using as data. Either rename the entry "
73+
"in data or use three arguments to plot.".format(args[1]),
7474
RuntimeWarning, stacklevel=3)
7575

7676
return ["x", "y"]

0 commit comments

Comments
 (0)