mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2025-06-29 02:45:12 +00:00
Remove dead code from project
This commit is contained in:
@ -1,16 +0,0 @@
|
||||
from fsm_base import FSMBase
|
||||
|
||||
|
||||
class Buttons(FSMBase):
|
||||
states = ['A', 'B', 'C']
|
||||
transitions = [
|
||||
{'trigger': 'anchor_a', 'source': 'A', 'dest': 'B'},
|
||||
{'trigger': 'anchor_b', 'source': 'B', 'dest': 'C'},
|
||||
{'trigger': 'anchor_c', 'source': 'C', 'dest': 'A'},
|
||||
]
|
||||
|
||||
def __init__(self):
|
||||
super().__init__('A')
|
||||
|
||||
|
||||
fsm = Buttons()
|
Reference in New Issue
Block a user