diff --git a/notebooks/datasets_summary.ipynb b/notebooks/datasets_summary.ipynb index 0e329bc23fdfcc6b0d137e73a9300fd7d439b84c..260956ce6067f1241e396d9166d7ddd70a126a97 100644 --- a/notebooks/datasets_summary.ipynb +++ b/notebooks/datasets_summary.ipynb @@ -85,8 +85,7 @@ }, "outputs": [], "source": [ - "data_path = \"../data\"\n", - "atlas_path = \"../data/atlas\"" + "data_path = \"../data\"" ] }, { @@ -97,6 +96,7 @@ "source": [ "# Instantiating the CaseConverter to read in the data.\n", "# It takes a path to the atlas dataset as an argument - the atlas holds various population and country metadata data. \n", + "atlas_path = Path(data_path) / \"atlas\"\n", "converter = CaseConverter(atlas_path)" ] },