Skip to content

Commit 48ebde0

Browse files
committed
Fix line length
1 parent 88ad403 commit 48ebde0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/axes/_base.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,9 @@ def __call__(self, *args, data=None, **kwargs):
294294
args = replaced
295295

296296
if len(args) >= 4 and not cbook.is_scalar_or_string(kwargs["label"]):
297-
raise ValueError("plot() with multiple groups of data (i.e., pairs"
298-
" of x and y) does not support multiple labels")
297+
raise ValueError("plot() with multiple groups of data (i.e., "
298+
"pairs of x and y) does not support multiple "
299+
"labels")
299300

300301
# Repeatedly grab (x, y) or (x, y, format) from the front of args and
301302
# massage them into arguments to plot() or fill().

0 commit comments

Comments
 (0)