Skip to content

Commit a558883

Browse files
committed
trailing whitespace
appease flake
1 parent 82bae91 commit a558883

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmlreaders/readers/eeg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ def as_timeseries(
723723
rstart = convert.milliseconds_to_samples(rel_start, sample_rate)
724724
rstop = convert.milliseconds_to_samples(rel_stop, sample_rate)
725725
# only events within boundaries
726-
evs = ev[(ev['eegoffset'] - rstart >= 0) &
726+
evs = ev[(ev['eegoffset'] - rstart >= 0) &
727727
(ev['eegoffset'] + rstop <= n_samples)]
728728
if len(evs) < len(ev):
729729
drop_idx = ev.index.difference(evs.index).to_numpy() # event idx to drop

0 commit comments

Comments
 (0)