From acea419ee9eff62e18e032c9f66627e26d6aeb67 Mon Sep 17 00:00:00 2001 From: GeorgBrantegger Date: Thu, 26 Mar 2026 14:38:50 +0100 Subject: [PATCH] made sure year info in the note is an integer --- Nextcloud Contact Infos/convert_athletes.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nextcloud Contact Infos/convert_athletes.ipynb b/Nextcloud Contact Infos/convert_athletes.ipynb index d3d8b91..c0eada7 100644 --- a/Nextcloud Contact Infos/convert_athletes.ipynb +++ b/Nextcloud Contact Infos/convert_athletes.ipynb @@ -226,7 +226,7 @@ " f\"TEL;TYPE=CELL:{phone}\"]\n", " \n", " if rower is True:\n", - " lines.append(f'NOTE:JG {year}')\n", + " lines.append(f'NOTE:JG {int(year)}')\n", "\n", " if photo_b64:\n", " lines.append(f\"PHOTO;ENCODING=b;TYPE=JPEG:{photo_b64}\")\n",