From ee8cb6dc852949807ff4e5f84c0be83b2b2117af Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Wed, 10 Oct 2018 14:19:04 +0100 Subject: [PATCH] Fixed bug in HLine/VLine datetime handling --- holoviews/plotting/bokeh/annotation.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/holoviews/plotting/bokeh/annotation.py b/holoviews/plotting/bokeh/annotation.py index 1b13ce5620..1364b27578 100644 --- a/holoviews/plotting/bokeh/annotation.py +++ b/holoviews/plotting/bokeh/annotation.py @@ -126,8 +126,6 @@ def get_data(self, element, ranges, style): dim = 'width' if dim == 'height' else 'height' mapping['dimension'] = dim loc = element.data - if isinstance(loc, datetime_types): - loc = date_to_integer(loc) mapping['location'] = loc return (data, mapping, style)