From fce9bc415bf610a9364efb69c59f66df754f5ecc Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 11 Jan 2017 14:39:42 +0100 Subject: [PATCH] Accept lists in Path --- holoviews/element/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/holoviews/element/path.py b/holoviews/element/path.py index 4abefa1251..e79013dea2 100644 --- a/holoviews/element/path.py +++ b/holoviews/element/path.py @@ -38,7 +38,7 @@ class Path(Element2D): def __init__(self, data, **params): if isinstance(data, tuple): - x, y = data + x, y = map(np.asarray, data) if y.ndim == 1: y = np.atleast_2d(y).T if len(x) != y.shape[0]: