Skip to content

Commit a30c2e2

Browse files
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
1 parent be68a01 commit a30c2e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

episodes/02-dictionaries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ One example of such usage in research is the storage of metadata for data, progr
8080
{
8181
"@id": "#project-1",
8282
"@type": "Organization",
83-
"name": "Science Workflows",
83+
"name": "Science Workflows"
8484
},
8585
{
8686
"@id": "#person-1",
8787
"@type": "Person",
88-
"name": "Alice Smith",
88+
"name": "Alice Smith"
8989
}
9090
]
9191
}

0 commit comments

Comments
 (0)