We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f14f84d commit 79e41d8Copy full SHA for 79e41d8
src/StateMachine.py
@@ -50,8 +50,6 @@ def __ExecActions(self,actions):
50
func = getattr(mod, expression)
51
if callable(func):
52
func()
53
- else:
54
- func
55
except AttributeError:
56
logging.error("Not Found Expression %s in Context", action.expression)
57
all_action_executed = False;
@@ -81,7 +79,6 @@ def LoadStateMachine(self):
81
79
if (self.states is not None):
82
80
logging.error("State Machine already loaded")
83
else:
84
- self.xml_file
85
self.states , self.current_state = ReadStateMachineFile(self.xml_file)
86
logging.info('State Machine Loaded')
87
0 commit comments