Skip to content

Commit

Permalink
Fixed plotting of Contours (#4136)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Dec 19, 2019
1 parent ca299d0 commit 2e9f8f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion holoviews/plotting/bokeh/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ def get_data(self, element, ranges, style):
if has_holes:
xs, ys = multi_polygons_data(element)
else:
xs, ys = (element.dimension_values(kd, expanded=False) for kd in element.kdims)
xs, ys = (list(element.dimension_values(kd, expanded=False))
for kd in element.kdims)
if self.invert_axes:
xs, ys = ys, xs
data = dict(xs=xs, ys=ys)
Expand Down

0 comments on commit 2e9f8f5

Please sign in to comment.