Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
UmSenhorQualquer committed Dec 29, 2017
1 parent a8093af commit d5b3279
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pybpodapi/com/messaging/trial.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Trial(BaseMessage):
"""
:ivar float bpod_start_timestamp: None
:ivar StateMachine sma: sma
:ivar list(StateOccurrences) states_occurrences: list of state occurrences
:ivar list(StateOccurrence) states_occurrences: list of state occurrences
:ivar list(EventOccurrence) events_occurrences: list of event occurrences
"""
MESSAGE_TYPE_ALIAS = 'TRIAL'
Expand All @@ -27,7 +27,7 @@ def __init__(self, sma=None):
super(Trial,self).__init__('New trial')
self.bpod_start_timestamp = None
self.sma = sma # type: StateMachine
self.states_occurrences = [] # type: list(StateOccurrences)
self.states_occurrences = [] # type: list(StateOccurrence)
self.events_occurrences = [] # type: list(EventOccurrence)

self.states = [0]
Expand Down

0 comments on commit d5b3279

Please sign in to comment.