Skip to content

Commit

Permalink
Fixed flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Sep 25, 2019
1 parent c769f14 commit 0519e59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/operation/datashader.py
Expand Up @@ -726,9 +726,9 @@ def _process(self, element, key=None):

agg = cvs.line(df, [x0d.name, x1d.name], [y0d.name, y1d.name], agg_fn, axis=1)
if xtype == "datetime":
agg[x.name] = (agg[x.name]/1e3).astype('datetime64[us]')
agg[x0d.name] = (agg[x0d.name]/1e3).astype('datetime64[us]')
if ytype == "datetime":
agg[y.name] = (agg[y.name]/1e3).astype('datetime64[us]')
agg[y0d.name] = (agg[y0d.name]/1e3).astype('datetime64[us]')

return self.p.element_type(agg, **params)

Expand Down

0 comments on commit 0519e59

Please sign in to comment.