We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46da987 commit 6ed57f5Copy full SHA for 6ed57f5
examples/convert_nirs_to_bids.py
@@ -25,6 +25,7 @@
25
# %%
26
# We are importing everything we need for this example:
27
import os.path as op
28
+import pathlib
29
import shutil
30
31
import mne
@@ -43,7 +44,7 @@
43
44
# We will use the MNE-NIRS package which includes convenient functions to
45
# download openly available datasets.
46
-data_dir = mne_nirs.datasets.fnirs_motor_group.data_path()
47
+data_dir = pathlib.Path(mne_nirs.datasets.fnirs_motor_group.data_path())
48
49
# Let's see whether the data has been downloaded using a quick visualization
50
# of the directory tree.
0 commit comments