diff --git a/ioos_qc/plotting.py b/ioos_qc/plotting.py index fe7539e..bf56289 100644 --- a/ioos_qc/plotting.py +++ b/ioos_qc/plotting.py @@ -7,12 +7,12 @@ L = logging.getLogger(__name__) -def bokeh_plot(data, var_name, results, title, module, test_name): - plot = bokeh_plot_var(data, var_name, results, title, module, test_name) +def bokeh_plot(time, data, results, title, module, test_name): + plot = bokeh_plot_var(time, data, results, title, module, test_name) return gridplot([[plot]], sizing_mode='fixed') -def bokeh_plot_var(time, data, var_name, results, title, module, test_name): +def bokeh_plot_var(time, data, results, title, module, test_name): """ Method to plot QC results using Bokeh """ if module not in results or test_name not in results[module]: