From 634d2916a6131cfa06933df992bc2f1f92bb4bb8 Mon Sep 17 00:00:00 2001 From: Noe Brucy Date: Mon, 14 Jun 2021 11:43:12 +0200 Subject: [PATCH] [plotter] allow partial save --- plotter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotter.py b/plotter.py index b5b2137..f4954db 100644 --- a/plotter.py +++ b/plotter.py @@ -388,7 +388,7 @@ class Plotter(Aggregator, BaseProcessor): if not self.pp_params.out.interactive and close: plt.tight_layout(pad=1) - if self.pp_params.out.save and close: + if self.pp_params.out.save: plt.savefig(plot_filename) self._log("{} plotted".format(plot_filename), "SUCCESS") else: