From 63a1cda9d357b8ee2864dc80f7b5233e5f20dab2 Mon Sep 17 00:00:00 2001 From: Maxime Liquet <35924738+maximlt@users.noreply.github.com> Date: Tue, 19 Sep 2023 13:37:59 +0200 Subject: [PATCH] Fix `Path.datatype` parameter type (#5897) --- 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 706f82305d..0f36f386a5 100644 --- a/holoviews/element/path.py +++ b/holoviews/element/path.py @@ -56,7 +56,7 @@ class Path(SelectionPolyExpr, Geometry): group = param.String(default="Path", constant=True) - datatype = param.ObjectSelector(default=[ + datatype = param.List(default=[ 'multitabular', 'spatialpandas', 'dask_spatialpandas'] )