diff --git a/python/examples/shower_profile.py b/python/examples/shower_profile.py
index 340afa201eb94be50ab4e3ff0a82730fde0251c9..76f2db866609633bf5c3e7af99100aef2a762dc8 100644
--- a/python/examples/shower_profile.py
+++ b/python/examples/shower_profile.py
@@ -77,7 +77,6 @@ def draw_profiles(pr, pr_config):
     ax.set_yscale("log")
     ax.set_xlim(min(pr["X"]), max(pr["X"]))
 
-
     plot_path = os.path.join(args.output_dir, "shower_profile_long_profiles.png")
     print("Saving", plot_path)
     fig.savefig(plot_path)
@@ -94,7 +93,6 @@ def draw_energyloss(prdx, prdx_config):
     ax.set_ylabel(f"dE/dX ({unit_energy_str} / ({unit_grammage_str}))")
     ax.set_xlim(min(prdx["X"]), max(prdx["X"]))
 
-
     plot_path = os.path.join(args.output_dir, "shower_profile_energy_loss.png")
     print("Saving", plot_path)
     fig.savefig(plot_path)