Skip to content

Commit c03c22e

Browse files
committed
more pep8
1 parent 20c6763 commit c03c22e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

neo/rawio/cedrawio.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def _parse_header(self):
9898
max_time = smrx.ChannelMaxTime(chan_ind)
9999
divide = smrx.ChannelDivide(chan_ind)
100100
# here we don't use filter (sonpy.lib.MarkerFilter()) so we get all marker
101-
wave_marks = smrx.ReadWaveMarks(chan_ind, int(max_time/divide), 0, max_time)
101+
wave_marks = smrx.ReadWaveMarks(chan_ind, int(max_time / divide), 0, max_time)
102102

103103
# here we load in memory all spike once because the access is really slow
104104
# with the ReadWaveMarks
@@ -113,7 +113,7 @@ def _parse_header(self):
113113
mask = spike_codes == unit_id
114114
self._all_spike_ticks[spike_chan_id] = spike_ticks[mask]
115115

116-
signal_channels = np.array(signal_channels, dtype=_signal_channel_dtype)
116+
signal_channels = np.array(signal_channels, dtype=_signal_channel_dtype)
117117

118118
# channels are grouped into stream if they have a common start, stop, size, divide and sampling_rate
119119
channel_infos = np.array(channel_infos,
@@ -203,7 +203,7 @@ def _get_analogsignal_chunk(self, block_index, seg_index, i_start, i_stop,
203203
sigs[:, i] = sig
204204

205205
return sigs
206-
206+
207207
def _spike_count(self, block_index, seg_index, unit_index):
208208
unit_id = self.header['spike_channels'][unit_index]['id']
209209
spike_ticks = self._all_spike_ticks[unit_id]

0 commit comments

Comments
 (0)