Skip to content

Commit

Permalink
Merge pull request #175 from samuelgarcia/small_fix
Browse files Browse the repository at this point in the history
oups
  • Loading branch information
samuelgarcia authored Mar 24, 2023
2 parents 7a228e2 + d0ceb27 commit 86effb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ephyviewer/datasource/spikeinterfacesources.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, recording, segment_index=0):

self._nb_channel = self.recording.get_num_channels()
self.sample_rate = self.recording.get_sampling_frequency()
self.t_start = 0.
self._t_start = 0.

@property
def nb_channel(self):
Expand All @@ -43,7 +43,7 @@ def get_channel_name(self, chan=0):

@property
def t_start(self):
return self.t_start
return self._t_start

@property
def t_stop(self):
Expand Down

0 comments on commit 86effb3

Please sign in to comment.