Skip to content

Commit

Permalink
Fixed unreferenced variable in regrid operation
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Feb 12, 2018
1 parent e15ddfb commit 4427773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/operation/datashader.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def _get_xarrays(self, element, coords, xtype, ytype):
xarr = element.data[vd.name]
if 'datetime' in (xtype, ytype):
xarr = xarr.copy()
if dims != xarr.dims and not irregular:
if dims != xarr.dims:
xarr = xarr.transpose(*dims)
else:
arr = element.dimension_values(vd, flat=False)
Expand Down

0 comments on commit 4427773

Please sign in to comment.