From 373ff902290ff163c808c12573830b56a4892040 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 22 Sep 2020 12:31:08 -0400 Subject: [PATCH] Only need UTC offset hacking if time w broker is messed.. --- piker/ui/_axes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/ui/_axes.py b/piker/ui/_axes.py index 24389f77..53d90c73 100644 --- a/piker/ui/_axes.py +++ b/piker/ui/_axes.py @@ -82,7 +82,7 @@ class DynamicDateAxis(pg.AxisItem): map(int, filter(lambda i: i < bars_len, indexes)) )] # TODO: **don't** have this hard coded shift to EST - dts = pd.to_datetime(epochs, unit='s') - 4*pd.offsets.Hour() + dts = pd.to_datetime(epochs, unit='s') # - 4*pd.offsets.Hour() return dts.strftime(self.tick_tpl[delay]) def tickStrings(self, values: List[float], scale, spacing):