Skip to content

Commit

Permalink
Merge pull request #447 from Atishaysjain/update-simple_library-path
Browse files Browse the repository at this point in the history
updated doc.read to include the appropriate path to simple_library.nt
  • Loading branch information
tcmitchell authored Mar 21, 2024
2 parents e55edd2 + 0372e84 commit c3b523d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples/getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"import sbol3\n",
"\n",
"import os\n",
"import glob"
"import glob\n",
"import pathlib"
]
},
{
Expand All @@ -30,7 +31,7 @@
"metadata": {},
"outputs": [],
"source": [
"doc.read('simple_library.nt')"
"doc.read(pathlib.Path.cwd().parent / 'test' / 'resources' / 'simple_library.nt')"
]
},
{
Expand Down

0 comments on commit c3b523d

Please sign in to comment.