Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 21, 2024
1 parent 04d9aa9 commit 5039483
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/source/tutorials/denoised_laser.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,11 @@
"color = \"tab:red\"\n",
"ax[1].set_xlabel(\"Time (s)\", fontsize=12)\n",
"ax[1].set_ylabel(\"Amplitude (AU)\", color=color, fontsize=12)\n",
"ax[1].plot(longitudinal_profile.time, np.sqrt(longitudinal_profile.temporal_intensity), color=color)\n",
"ax[1].plot(\n",
" longitudinal_profile.time,\n",
" np.sqrt(longitudinal_profile.temporal_intensity),\n",
" color=color,\n",
")\n",
"ax[1].tick_params(axis=\"y\", labelcolor=color)\n",
"ax[1].set_title(\"Reconstructed data (Temporal space)\", fontsize=15)\n",
"ax1 = ax[1].twinx()\n",
Expand Down

0 comments on commit 5039483

Please sign in to comment.