Skip to content

Commit

Permalink
Update docstring for include (#108)
Browse files Browse the repository at this point in the history
Fixes: #107

---------

Signed-off-by: Adam Li <[email protected]>
  • Loading branch information
adam2392 authored Dec 11, 2023
1 parent 6336e88 commit 58de4db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion openneuro/_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,10 @@ def download(
Files and directories to download. **Only** these files and directories
will be retrieved. Uses Unix path expansion (``*`` for any number of
wildcard characters and ``?`` for one wildcard character;
e.g. ``'sub-1_task-*.fif'``)
e.g. ``'sub-1_task-*.fif'``). As an example, if you would like to download
only subject '1' and run '01' files, you can do so via:
``'sub-1/**/*run-01*'``. The pattern “**” will match any files and
zero or more directories, subdirectories and symbolic links to directories.
exclude
Files and directories to exclude from downloading.
Uses Unix path expansion (``*`` for any number of wildcard characters
Expand Down

0 comments on commit 58de4db

Please sign in to comment.