Skip to content

Commit e2902ec

Browse files
authored
Ensure dask.dataframe is imported to use DaskInterface (#3900)
1 parent ddadf09 commit e2902ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

holoviews/core/data/dask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class DaskInterface(PandasInterface):
4444

4545
@classmethod
4646
def loaded(cls):
47-
return 'dask' in sys.modules and 'pandas' in sys.modules
47+
return 'dask.dataframe' in sys.modules and 'pandas' in sys.modules
4848

4949
@classmethod
5050
def applies(cls, obj):

0 commit comments

Comments
 (0)