From 929a4e53c26d415655d575b63467f11b8b35cf90 Mon Sep 17 00:00:00 2001 From: scottan <33283688+Scottan@users.noreply.github.com> Date: Fri, 14 Nov 2025 10:48:00 +0000 Subject: [PATCH] data "data/" to file path for JSON metadata loading --- episodes/02-dictionaries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/02-dictionaries.md b/episodes/02-dictionaries.md index 144a0fb..633bd8b 100644 --- a/episodes/02-dictionaries.md +++ b/episodes/02-dictionaries.md @@ -350,7 +350,7 @@ This package provides the method `json.load()` to read JSON data from a file and ```python import json -with open('ro-crate-metadata-1.json') as f: +with open('data/ro-crate-metadata-1.json') as f: data = json.load(f) ```