Skip to content

Commit 3bd2b97

Browse files
authored
Added absolute_import for py2 compat (#335)
1 parent 6c32ef1 commit 3bd2b97

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

hvplot/dask.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import absolute_import
2+
13
def patch(name='hvplot', extension='bokeh', logo=False):
24
from . import hvPlotTabular, post_patch
35

hvplot/pandas.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import absolute_import
2+
13
def patch(name='hvplot', extension='bokeh', logo=False):
24
from . import hvPlotTabular, post_patch
35

hvplot/streamz.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import absolute_import
2+
13
def patch(name='hvplot', extension='bokeh', logo=False):
24
from . import hvPlotTabular, post_patch
35

hvplot/xarray.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import absolute_import
2+
13
def patch(name='hvplot', extension='bokeh', logo=False):
24
from . import hvPlot, post_patch
35

0 commit comments

Comments
 (0)