Skip to content

Commit df80761

Browse files
committed
Fix trimesh dask rendering warning
1 parent dd26fd9 commit df80761

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

holoviews/operation/datashader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ def _precompute(self, element, agg):
10001000
simplices = element.data[[dims[sd].name for sd in simplex_dims]]
10011001
verts = element.nodes.data[[node_dims[vd].name for vd in vert_dims]]
10021002
else:
1003-
if datatypes == 'dask':
1003+
if 'dask' in datatypes:
10041004
if datatypes[0] == 'dask':
10051005
p, n = 'simplexes', 'vertices'
10061006
else:

0 commit comments

Comments
 (0)