compat.genlib.fsm: fix after commit dac62754
.
This commit is contained in:
parent
ec7fcd3697
commit
447bfa6ad5
|
@ -16,11 +16,13 @@ class AnonymousState:
|
||||||
|
|
||||||
class NextState(Statement):
|
class NextState(Statement):
|
||||||
def __init__(self, state):
|
def __init__(self, state):
|
||||||
|
super().__init__()
|
||||||
self.state = state
|
self.state = state
|
||||||
|
|
||||||
|
|
||||||
class NextValue(Statement):
|
class NextValue(Statement):
|
||||||
def __init__(self, target, value):
|
def __init__(self, target, value):
|
||||||
|
super().__init__()
|
||||||
self.target = target
|
self.target = target
|
||||||
self.value = value
|
self.value = value
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue