From c504264b991dcbd574ed39f178fe034d609cc0d2 Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Tue, 13 Feb 2018 03:26:41 +0000 Subject: [PATCH] Fixed typo --- holoviews/operation/datashader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/holoviews/operation/datashader.py b/holoviews/operation/datashader.py index c1b82bac6a..70742e5fb9 100644 --- a/holoviews/operation/datashader.py +++ b/holoviews/operation/datashader.py @@ -548,7 +548,7 @@ def _precompute(self, element): for c, dtype in zip(simplices.columns, simplices.dtypes): if dtype.kind != 'i': simplices[c] = simplices[c].astype('int') - return {'mesh': mesh(verts, , 'simplices': simplices, + return {'mesh': mesh(verts, simplices), 'simplices': simplices, 'vertices': verts}