Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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