Skip to content

Commit

Permalink
Fixed flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jun 2, 2018
1 parent 2d8c40d commit 3a8b95a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion holoviews/core/data/array.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from collections import defaultdict
try:
import itertools.izip as zip
except ImportError:
Expand Down
1 change: 0 additions & 1 deletion holoviews/core/data/dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ def concat(cls, datasets, dimensions, vdims):
for d, k in zip(dimensions, key):
data[d.name] = k
dataframes.append(data)
template = datasets[0][1]
return dd.concat(dataframes)

@classmethod
Expand Down
1 change: 0 additions & 1 deletion holoviews/core/data/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ def cast(cls, datasets, datatype=None, cast_type=None):
with the given cast_type (if specified).
"""
datatype = datatype or cls.datatype
interfaces = list(util.unique_iterator((d.interface for d in datasets)))
cast = []
for ds in datasets:
if cast_type is not None or ds.interface.datatype != datatype:
Expand Down

0 comments on commit 3a8b95a

Please sign in to comment.