From a30c2e2ebb946eefa15da7185bca00292e6ded8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Herrer=C3=ADas=20Azcu=C3=A9?= Date: Wed, 14 May 2025 10:55:07 +0100 Subject: [PATCH] Remove trailing commas in example JSON metadata `json.load` doesn't like the trailing commas on the last two list elements of the example JSON metadata --- episodes/02-dictionaries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/episodes/02-dictionaries.md b/episodes/02-dictionaries.md index 144a0fb..89e8c7f 100644 --- a/episodes/02-dictionaries.md +++ b/episodes/02-dictionaries.md @@ -80,12 +80,12 @@ One example of such usage in research is the storage of metadata for data, progr { "@id": "#project-1", "@type": "Organization", - "name": "Science Workflows", + "name": "Science Workflows" }, { "@id": "#person-1", "@type": "Person", - "name": "Alice Smith", + "name": "Alice Smith" } ] }