Skip to content

Commit

Permalink
Update Node
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Feb 26, 2024
1 parent 1d5d964 commit c9d83c9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions holoviews/tests/plotting/bokeh/test_annotationplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
VSpan,
VSpans,
)
from holoviews.plotting.bokeh.util import bokeh32, bokeh33
from holoviews.plotting.bokeh.util import bokeh32, bokeh33, bokeh34

from .test_plot import TestBokehPlot, bokeh_renderer

Expand All @@ -29,9 +29,12 @@
VStrip as BkVStrip,
)

if bokeh33:
if bokeh33 and not bokeh34:
from bokeh.models.coordinates import Node

if bokeh34:
from bokeh.models import Node


class TestHVLinePlot(TestBokehPlot):

Expand Down

0 comments on commit c9d83c9

Please sign in to comment.