Skip to content

Commit

Permalink
Implement disabling of figure show
Browse files Browse the repository at this point in the history
  • Loading branch information
HealthyPear committed Sep 19, 2024
1 parent 62372e8 commit 693e8ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/iact_estimator/scripts/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ def main():
output_path=output_path,
)

plt.show()
if config["plotting_options"]["show"]:
plt.show()


if __name__ == "__main__":
Expand Down

0 comments on commit 693e8ec

Please sign in to comment.