How to fix this error: EEG Nihon: I dont know how to read more than one data block for this type of file :(

When I give command to open my nihon EEG file I get the following error response. I don’t know how to fix.

  1 #input dados do EEG

----> 2 raw = mne.io.read_raw_nihon(‘DA0935FH.EEG’)#lĂȘ o arquivo
3 print(raw.info)#printa informaçÔes sobre o arquivo
4 raw.crop().load_data()
5 raw.plot()

~/anacondalele/envs/mne/lib/python3.8/site-packages/mne/io/nihon/nihon.py in read_raw_nihon(fname, preload, verbose)
44 mne.io.Raw : Documentation of attribute and methods.
45 “”"
—> 46 return RawNihon(fname, preload, verbose)
47
48

in init(self, fname, preload, verbose)

~/anacondalele/envs/mne/lib/python3.8/site-packages/mne/io/nihon/nihon.py in init(self, fname, preload, verbose)
314 logger.info(‘Loading %s’ % data_name)
315
→ 316 header = _read_nihon_header(fname)
317 metadata = _read_nihon_metadata(fname)
318

~/anacondalele/envs/mne/lib/python3.8/site-packages/mne/io/nihon/nihon.py in _read_nihon_header(fname)
217 ‘control block for this type of file :(’)
218 if header[‘controlblocks’][0][‘n_datablocks’] != 1:
→ 219 raise NotImplementedError('I dont know how to read more than one ’
220 ‘data block for this type of file :(’)
221

NotImplementedError: I dont know how to read more than one data block for this type of file :frowning:

this was just fixed

https://github.com/mne-tools/mne-python/pull/9437

you’ll need to use the MNE current version to use this

Alex