Skip to content

Commit

Permalink
Changed path definition to be os-independent.
Browse files Browse the repository at this point in the history
  • Loading branch information
TristanHehnen committed Jun 20, 2024
1 parent 4a970a2 commit dfb27d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion book/content/examples/01_basic/06_basic_example_da_i.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
],
"source": [
"# Check files with experiment data.\n",
"folder_path=os.path.join(\"./data/Fire_calorimetry\")\n",
"folder_path=os.path.join(\"data\", \"Fire_calorimetry\")\n",
"files = os.listdir(folder_path)\n",
"print(files)"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
],
"source": [
"# Check files with experiment data.\n",
"folder_path='./data/Furniture_calorimetry'\n",
"folder_path=os.path.join(\"data\", \"Furniture_calorimetry\")\n",
"files = os.listdir(folder_path)\n",
"print(files)"
]
Expand Down

0 comments on commit dfb27d4

Please sign in to comment.