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 4aa0b50 commit f6a6e65Copy full SHA for f6a6e65
mne_bids/write.py
@@ -122,9 +122,7 @@ def _should_use_bti_pdf_suffix() -> bool:
122
check=True,
123
)
124
except (subprocess.CalledProcessError, FileNotFoundError, OSError) as e:
125
- logger.warning(
126
- f"Failed to run bids-validator to check version: {e}"
127
- )
+ logger.warning(f"Failed to run bids-validator to check version: {e}")
128
else:
129
version_output = res.stdout.strip() or res.stderr.strip()
130
match = re.search(r"(\d+)\.(\d+)\.(\d+)", version_output)
0 commit comments