Skip to content

Commit

Permalink
fix typo in error message in plot.py (pydata#4188)
Browse files Browse the repository at this point in the history
  • Loading branch information
yohai authored Jun 30, 2020
1 parent bdcfab5 commit 54b9450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/plot/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def _infer_line_data(darray, x, y, hue):

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

if y is None:
xname, huename = _infer_xy_labels(darray=darray, x=x, y=hue)
Expand Down

0 comments on commit 54b9450

Please sign in to comment.