Skip to content

Commit

Permalink
Fixing path for image
Browse files Browse the repository at this point in the history
  • Loading branch information
JavalVyas2000 committed Feb 12, 2024
1 parent 909ef7d commit a8bc96b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"\n",
"\n",
"def datafile_path(name):\n",
" return Path(\".\") / name\n",
" return Path(\"..\") / name\n",
"\n",
"\n",
"Image(datafile_path(\"CO2_Flowsheet.png\"))"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"\n",
"\n",
"def datafile_path(name):\n",
" return Path(\"...\") / name\n",
" return Path(\"..\") / name\n",
"\n",
"\n",
"Image(datafile_path(\"CO2_Flowsheet.png\"))"
Expand Down

0 comments on commit a8bc96b

Please sign in to comment.