From deaff7eedcde6c94249ea71b37d46b680f4f200d Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Wed, 15 Jul 2026 14:39:59 -0400 Subject: [PATCH] Avoid error: invalid syntax. Perhaps you forgot a comma? --- docs/src/content/docs/high-level/dataverse.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/high-level/dataverse.mdx b/docs/src/content/docs/high-level/dataverse.mdx index 40770db..eb0fbe2 100644 --- a/docs/src/content/docs/high-level/dataverse.mdx +++ b/docs/src/content/docs/high-level/dataverse.mdx @@ -85,7 +85,7 @@ dataset = dv.create_dataset( "affiliation": "University of Science" # Optional: where they work } ], - subjects=["Computer and Information Science", "Engineering"] # Categories for the dataset + subjects=["Computer and Information Science", "Engineering"], # Categories for the dataset collection="my-collection" )