We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5789eeb commit a447f6fCopy full SHA for a447f6f
tests/examples/traffic_light_nested_machine.py
@@ -34,7 +34,7 @@ class red(State.Builder, enter="reset_elapsed"):
34
def __init__(self, seconds_to_turn_state=5, seconds_running=20):
35
self.seconds_to_turn_state = seconds_to_turn_state
36
self.seconds_running = seconds_running
37
- super().__init__(queued=True)
+ super().__init__(ignore_missing_event=True)
38
39
def on_timer(self, event: str, source: State, target: State):
40
print(f".. Running {event} from {source.id} to {target.id}")
0 commit comments