From 9aba92ce4a9596d3f68f71f632d847b99fd5744b Mon Sep 17 00:00:00 2001 From: Yohai Bar Sinai <6164157+yohai@users.noreply.github.com> Date: Tue, 30 Jun 2020 13:07:44 +0300 Subject: [PATCH] fix typo in error message in plot.py --- xarray/plot/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/plot/plot.py b/xarray/plot/plot.py index e4a981daf8c..9081f1adb30 100644 --- a/xarray/plot/plot.py +++ b/xarray/plot/plot.py @@ -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)