Skip to content

Commit 88ad403

Browse files
committed
Fix line length
1 parent 143febf commit 88ad403

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/axes/_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ 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., pairs"
298+
" of x and y) does not support multiple labels")
299299

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

0 commit comments

Comments
 (0)