Skip to content

Commit fae0ead

Browse files
committed
another
1 parent 2ec0ddc commit fae0ead

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/convert_group_studies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
run_map = dict(zip(runs, range(1, 4)))
5151

5252
for subject_id in subject_ids:
53-
eegbci.load_data(subject=subject_id, runs=runs, update_path=True)
53+
eegbci.load_data(subjects=subject_id, runs=runs, update_path=True)
5454

5555
# get path to MNE directory with the downloaded example data
5656
mne_data_dir = mne.get_config("MNE_DATASETS_EEGBCI_PATH")
@@ -81,7 +81,7 @@
8181
bids_list = list()
8282
for subject_id in subject_ids:
8383
for run in runs:
84-
raw_fname = eegbci.load_data(subject=subject_id, runs=run)[0]
84+
raw_fname = eegbci.load_data(subjects=subject_id, runs=run)[0]
8585
raw = mne.io.read_raw_edf(raw_fname)
8686
raw.info["line_freq"] = 50 # specify power line frequency
8787
raw_list.append(raw)

0 commit comments

Comments
 (0)