Skip to content

Commit

Permalink
BIDSPath no longer warns on missing file
Browse files Browse the repository at this point in the history
- closes #1178
  • Loading branch information
sappelhoff committed Oct 24, 2023
1 parent e7fc975 commit b5d4c3b
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions examples/bidspath.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
BIDSPath is MNE-BIDS's working horse when it comes to file and folder
operations. Learn here how to use it.
"""
# Author: Richard Höchenberger <richard.hoechenberger@gmail.com>
# Authors: Richard Höchenberger <richard.hoechenberger@gmail.com>
# Stefan Appelhoff <stefan.appelhoff@mailbox.org>
#
# License: BSD-3-Clause

Expand Down Expand Up @@ -141,15 +142,9 @@
print(bids_path.fpath)

# %%
# Oups! The cell above produced a ``RuntimeWarning`` that our data file could
# not be found. That's because we changed the ``run`` and ``session`` entities
# above, and the ``tiny_bids`` dataset does not contain corresponding data.
#
# That shows us that ``BIDSPath`` is doing a lot of guess-work and checking
# in the background, but note that this may change in the future.
#
# For now, let's revert to the last working iteration of our ``bids_path``
# instance.
# However, for the sake of the present examples, let's revert to the iteration
# of our ``bids_path`` instance with no ``run`` and ``session="eeg"``, as that
# file exists in the ``tiny_bids`` dataset.

bids_path.update(run=None, session="eeg")
print(bids_path.fpath)
Expand Down

0 comments on commit b5d4c3b

Please sign in to comment.