Skip to content

Commit 74f8820

Browse files
committed
fine
1 parent 8abb831 commit 74f8820

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

mne_bids/read.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -607,13 +607,9 @@ def events_file_to_annotation_kwargs(events_fname: str | Path, verbose=None) ->
607607
>>> # Read the events file using the function
608608
>>> events_dict = events_file_to_annotation_kwargs(events_file, verbose=False)
609609
>>> events_dict
610-
{'onset': array([0.1, 0.2, 0.3]),
611-
'duration': array([0.1, 0.1, 0.1]),
612-
'description': array(['event1', 'event2', 'event1'], dtype='<U6'),
613-
'event_id': {'event1': 1, 'event2': 2},
614-
'extras': [{'foo': 'a'}, {'foo': 'b'}, {'foo': 'c'}]}
610+
{'onset': array([0.1, 0.2, 0.3]), 'duration': array([0.1, 0.1, 0.1]), 'description': array(['event1', 'event2', 'event1'], dtype='<U6'), 'event_id': {'event1': 1, 'event2': 2}, 'extras': [{'foo': 'a'}, {'foo': 'b'}, {'foo': 'c'}]}
615611
616-
"""
612+
""" # noqa E501
617613
logger.info(f"Reading events from {events_fname}.")
618614
events_dict = _from_tsv(events_fname)
619615

0 commit comments

Comments
 (0)