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 b2b421d commit 8d6a5f1Copy full SHA for 8d6a5f1
mne_bids/path.py
@@ -2280,9 +2280,11 @@ def _filter_fnames(
2280
r"_proc-(" + "|".join(processing) + ")" if processing else r"(|_proc-([^_]+))"
2281
)
2282
space_str = r"_space-(" + "|".join(space) + ")" if space else r"(|_space-([^_]+))"
2283
- rec_str = (r"_recording-(" + "|".join(recording) + ")"
2284
- if recording else r"(|_recording-([^_]+))"
2285
- )
+ rec_str = (
+ r"_recording-(" + "|".join(recording) + ")"
+ if recording
2286
+ else r"(|_recording-([^_]+))"
2287
+ )
2288
split_str = r"_split-(" + "|".join(split) + ")" if split else r"(|_split-([^_]+))"
2289
desc_str = (
2290
r"_desc-(" + "|".join(description) + ")" if description else r"(|_desc-([^_]+))"
0 commit comments