missed a call of os.path. removed it.

This commit is contained in:
Jonathan Raviotta 2019-08-07 20:47:37 -04:00
parent 9df1c23c71
commit 2bc67b4a96

View File

@ -16,8 +16,9 @@
"# Change directory\n",
"# Define all paths relative to the project root shown in the cell output\n",
"import os\n",
"from pathlib import Path\n",
"try:\n",
"\tos.chdir(os.path.join(os.getcwd(), '../..'))\n",
"\tos.chdir(Path(os.getcwd(), '../..'))\n",
"\tprint(os.getcwd())\n",
"except:\n",
"\tpass"