Skip to content

Commit

Permalink
Merge pull request #262 from jkittner/invalid-escape-fix
Browse files Browse the repository at this point in the history
fix an invalid escape in the subplots example by using a raw string
  • Loading branch information
ocefpaf committed Feb 26, 2024
2 parents 20b02e1 + 9c0a9a1 commit 865e014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/usage.ipynb
Expand Up @@ -431,7 +431,7 @@
"y_ticks = range(0, 17, 4)\n",
"for ax in g.axes:\n",
" ax.set_legend(\n",
" title=\"$m \\cdot s^{-1}$\", bbox_to_anchor=(1.15, -0.1), loc=\"lower right\"\n",
" title=r\"$m \\cdot s^{-1}$\", bbox_to_anchor=(1.15, -0.1), loc=\"lower right\"\n",
" )\n",
" ax.set_rgrids(y_ticks, y_ticks)\n",
"\n",
Expand Down

0 comments on commit 865e014

Please sign in to comment.