From 73793a56f4d4cd2fac72788e45d3b60cd8703336 Mon Sep 17 00:00:00 2001 From: Merrielle Ondreicka Date: Fri, 8 Nov 2019 09:47:05 -0800 Subject: [PATCH] Small tweaks before PR --- postreise/plot/__init__.py | 2 +- postreise/plot/multi/plot_helpers.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/postreise/plot/__init__.py b/postreise/plot/__init__.py index 4fac7b474..803de19c2 100644 --- a/postreise/plot/__init__.py +++ b/postreise/plot/__init__.py @@ -1 +1 @@ -__all__ = ['analyze_pg', 'analyze_set'] +__all__ = ['analyze_pg', 'analyze_set', 'multi'] diff --git a/postreise/plot/multi/plot_helpers.py b/postreise/plot/multi/plot_helpers.py index 88f482037..348097971 100644 --- a/postreise/plot/multi/plot_helpers.py +++ b/postreise/plot/multi/plot_helpers.py @@ -77,10 +77,10 @@ def _get_data_chart_from_scenario(scenario_id, zone_list): scenario = Scenario(scenario_id) scenario_name = scenario.info['name'] data_chart = apg(scenario, - ('2016-01-01-00', '2016-12-31-23', 'utc', 'H'), - zone_list, - SCENARIO_RESOURCE_TYPES, - 'chart', normalize=False).get_data() + ('2016-01-01-00', '2016-12-31-23', 'utc', 'H'), + zone_list, + SCENARIO_RESOURCE_TYPES, + 'chart', normalize=False).get_data() plt.close('all') return data_chart, scenario_name