diff --git a/notebooks/wp5/glacier_distribution.ipynb b/notebooks/wp5/glacier_distribution.ipynb index 96d4faf..edc6344 100644 --- a/notebooks/wp5/glacier_distribution.ipynb +++ b/notebooks/wp5/glacier_distribution.ipynb @@ -290,8 +290,7 @@ " ylabel=\"Number of glaciers\",\n", ")\n", "_ = ax.text(\n", - " 0,\n", - " 1,\n", + " *(0, 1),\n", " f\"Date of digitization data are missing for {missing} glaciers or {missing_perc:.2f}% of the dataset.\",\n", " transform=ax.transAxes,\n", " bbox={\"facecolor\": \"white\", \"edgecolor\": \"black\"},\n", @@ -361,8 +360,7 @@ "ax.grid()\n", "ax.legend()\n", "_ = ax.text(\n", - " 0,\n", - " 0,\n", + " (*0, 0),\n", " \"\\n\".join(text),\n", " transform=ax.transAxes,\n", " bbox={\"facecolor\": \"white\", \"edgecolor\": \"black\"},\n",