From d5b828e96de04998e4a0cd5d49b23ad9b77f7168 Mon Sep 17 00:00:00 2001 From: kglidic <67393897+kglidic@users.noreply.github.com> Date: Fri, 10 Jul 2020 16:20:10 -0500 Subject: [PATCH] Update spec_pipeline.py Fixed the syntax error in the axis labels --- tshirt/pipeline/spec_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tshirt/pipeline/spec_pipeline.py b/tshirt/pipeline/spec_pipeline.py index 2eecb27..ad3f401 100644 --- a/tshirt/pipeline/spec_pipeline.py +++ b/tshirt/pipeline/spec_pipeline.py @@ -1345,7 +1345,7 @@ def plot_wavebin_series(self,nbins=10,offset=0.005,savePlot=True,yLim=None,xLim= p = bokeh.plotting.figure() p.background_fill_color="#f5f5f5" p.grid.grid_line_color="white" - p.xaxis.axis_label = 'Time (JD - {})'.format(offset_time)' + p.xaxis.axis_label = 'Time (JD - {})'.format(offset_time) p.yaxis.axis_label = 'Normalized Flux' colors = itertools.cycle(palette)