From 1532818e8d16455fb9a8409fe32ac5bff99fb533 Mon Sep 17 00:00:00 2001 From: Mattia Almansi Date: Thu, 4 Apr 2024 11:25:57 +0200 Subject: [PATCH] cleanup --- notebooks/wp5/glacier_distribution.ipynb | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/notebooks/wp5/glacier_distribution.ipynb b/notebooks/wp5/glacier_distribution.ipynb index 25c2e7d..bd5db30 100644 --- a/notebooks/wp5/glacier_distribution.ipynb +++ b/notebooks/wp5/glacier_distribution.ipynb @@ -198,12 +198,8 @@ "n_glaciers = len(gdf)\n", "total_area = gdf[\"AREA\"].sum()\n", "print(\n", - " \" \".join(\n", - " [\n", - " f\"A total number of {n_glaciers} glaciers is present in the dataset,\",\n", - " f\"covering a total area of {total_area:.2f} km^2.\",\n", - " ]\n", - " )\n", + " f\"A total number of {n_glaciers} glaciers is present in the dataset, \"\n", + " f\"covering a total area of {total_area:.2f} km^2.\"\n", ")" ] },