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 12adc62 commit eedc56fCopy full SHA for eedc56f
spm/_version.py
@@ -1 +1 @@
1
-__version__ = "25.01.beta1.post4"
+__version__ = "25.01.beta1.post5"
spm/utils/spm_mne_converter.py
@@ -180,7 +180,7 @@ def spm_2_mne_raw(D):
180
bad_channels = D.badchannels()
181
if len(bad_channels) > 0:
182
info["bads"] = [
183
- channel_names[i - 1] # python index = matlab index - 1
+ channel_names[int(i - 1)] # python index = matlab index - 1
184
for i in bad_channels
185
]
186
raw = mne.io.RawArray(data, info)
0 commit comments