Skip to content

Commit

Permalink
fix an invalid escape in the subplots example by using a raw string
Browse files Browse the repository at this point in the history
  • Loading branch information
jkittner committed Jan 3, 2024
1 parent 9d64c9a commit 9c0a9a1
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 9c0a9a1

Please sign in to comment.