mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-06 00:11:22 +00:00
13 lines
488 B
Python
13 lines
488 B
Python
# Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
|
# All Rights Reserved. See LICENSE file for details.
|
|
|
|
from .fsm_base import FSMBase
|
|
|
|
|
|
class LinearFSM(FSMBase):
|
|
def __init__(self, number_of_steps):
|
|
self.states = list(map(str, range(number_of_steps)))
|
|
self.transitions = [{'trigger': 'step_{}'.format(int(index)+1), 'source': index, 'dest': str(int(index)+1)}
|
|
for index in self.states[:-1]]
|
|
super(LinearFSM, self).__init__()
|