From 7b03d468ed8c6fbffeb6fc474faef3e8324e7a13 Mon Sep 17 00:00:00 2001 From: Shreyas Arvindekar Date: Wed, 5 Jun 2024 14:13:46 +0530 Subject: [PATCH] Address flake8 issues --- pyext/src/wrapper_v6.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyext/src/wrapper_v6.py b/pyext/src/wrapper_v6.py index e9d4330..bfa55b8 100755 --- a/pyext/src/wrapper_v6.py +++ b/pyext/src/wrapper_v6.py @@ -129,7 +129,8 @@ def plotter(results: dict, h_params): plt.ylabel("Nested sampling process time") plt.savefig( os.path.join( - h_params["parent_dir"], f"trial_{h_params['trial_name']}_proctime.png" + h_params["parent_dir"], + f"trial_{h_params['trial_name']}_proctime.png", ) ) @@ -142,7 +143,8 @@ def plotter(results: dict, h_params): plt.ylabel("Mean time per MCMC step") plt.savefig( os.path.join( - h_params["parent_dir"], f"trial_{h_params['trial_name']}_persteptime.png" + h_params["parent_dir"], + f"trial_{h_params['trial_name']}_persteptime.png", ) )