Skip to content

Commit a161ae3

Browse files
committed
Fix line length
1 parent afe34c5 commit a161ae3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/axes/_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,8 @@ def __call__(self, *args, data=None, **kwargs):
293293
replaced[label_namer_idx], args[label_namer_idx])
294294
args = replaced
295295

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

0 commit comments

Comments
 (0)