Skip to content

Commit

Permalink
Ensure histogram operation does not raise deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored and jbednar committed Oct 12, 2017
1 parent 7279bec commit 26e4766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/operation/element.py
Expand Up @@ -555,7 +555,7 @@ def _process(self, view, key=None):
if view.group != view.__class__.__name__:
params['group'] = view.group

return Histogram(hist, edges, kdims=[view.get_dimension(selected_dim)],
return Histogram((hist, edges), kdims=[view.get_dimension(selected_dim)],
label=view.label, **params)


Expand Down

0 comments on commit 26e4766

Please sign in to comment.