Skip to content

Commit

Permalink
Adjust comment formatting
Browse files Browse the repository at this point in the history
I hate lint or black or whatever it is. PRs should not fail due to a missing space after a #.
  • Loading branch information
mnwhite committed Feb 20, 2024
1 parent 81e3bf0 commit 6e8e2db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HARK/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ def make_figs(figure_name, saveFigs, drawFigs, target_dir="Figures"):
print(f"Saving figure {figure_name} in {target_dir}")
plt.savefig(
os.path.join(target_dir, f"{figure_name}.jpg"),
#metadata={"CreationDate": None}, # metadata not supported for jpg
# metadata is not supported for jpg
) # For web/html
plt.savefig(
os.path.join(target_dir, f"{figure_name}.png"),
Expand Down

0 comments on commit 6e8e2db

Please sign in to comment.