Skip to content

Commit 54b9450

Browse files
authored
fix typo in error message in plot.py (#4188)
1 parent bdcfab5 commit 54b9450

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/plot/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _infer_line_data(darray, x, y, hue):
6262

6363
else:
6464
if x is None and y is None and hue is None:
65-
raise ValueError("For 2D inputs, please" "specify either hue, x or y.")
65+
raise ValueError("For 2D inputs, please specify either hue, x or y.")
6666

6767
if y is None:
6868
xname, huename = _infer_xy_labels(darray=darray, x=x, y=hue)

0 commit comments

Comments
 (0)