Skip to content

Commit

Permalink
fix: Windows examples
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Oct 14, 2024
1 parent c4142f6 commit 9f1acf8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ builtdocs/
jupyter_execute/
doc/Reference_Manual/
doc/user_guide/data.pickle
doc/user_guide/output.csv
doc/user_guide/output.txt
doc/reference/generated

# Unit test / Coverage report
Expand Down
6 changes: 3 additions & 3 deletions doc/user_guide/Parameter_Types.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -717,8 +717,8 @@
"class P(param.Parameterized):\n",
" p = param.Path('Parameter_Types.ipynb')\n",
" f = param.Filename('Parameter_Types.ipynb')\n",
" d = param.Foldername('lib', search_paths=['/','/usr','/share'])\n",
" o = param.Filename('output.csv', check_exists=False)\n",
" d = param.Foldername('lib', search_paths=['/','/usr','/share'], check_exists=False)\n",
" o = param.Filename('output.txt', check_exists=False)\n",
" \n",
"p = P()\n",
"p.p"
Expand All @@ -731,7 +731,7 @@
"metadata": {},
"outputs": [],
"source": [
"p.p = '/usr/lib'\n",
"p.p = 'Outputs.ipynb'\n",
"p.p"
]
},
Expand Down

0 comments on commit 9f1acf8

Please sign in to comment.