Add comments

This commit is contained in:
Erik Johnston 2016-09-05 10:41:27 +01:00
parent a99e933550
commit 628e65721b
2 changed files with 43 additions and 41 deletions

View file

@ -27,12 +27,17 @@ class EventContext(object):
]
def __init__(self):
# The current state including the current event
self.current_state_ids = None
# The current state excluding the current event
self.prev_state_ids = None
self.state_group = None
self.rejected = False
self.push_actions = []
# A previously persisted state group and a delta between that
# and this state.
self.prev_group = None
self.delta_ids = None