Skip to content

Commit

Permalink
Address flake8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas-arvindekar committed Jun 5, 2024
1 parent 4957a6d commit 7b03d46
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyext/src/wrapper_v6.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)
)

Expand All @@ -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",
)
)

Expand Down

0 comments on commit 7b03d46

Please sign in to comment.