AttributeError: module 'mne' has no attribute 'io'

Hello,
I need help this is problem. This is error not came suddenly. Before it didnā€™t. The code worked perfectly. I didnā€™t change anything. I didnā€™t update the mne version or the packages. Do you know how to fix?

AttributeError Traceback (most recent call last)
in
2 raw_list_number = []
3 for eeg_number in range(len(eeg_list)):
----> 4 raw = mne.io.read_raw_nihon(eeg_list[eeg_number])
5 raw_list_number.append(raw)

AttributeError: module ā€˜mneā€™ has no attribute 'io

I would try to restart everything and redownload MNE.
Goodluck!

Whatā€™s the output of mne.sys_info() inserted at the top of your script?

Did you maybe create a file named mne.py in your own project folder, next to the script youā€™re trying to run?


AttributeError Traceback (most recent call last)
in
----> 1 mne.sys_info()

AttributeError: module ā€˜mneā€™ has no attribute ā€˜sys_infoā€™

Whatā€™s the output of:

print(mne)