Example #1
0
 def run(self):
     return Base_Step_Executor.run(self)
Example #2
0
File: sos_step.py Project: mr-c/SOS
 def __init__(self, step):
     Base_Step_Executor.__init__(self, step)
Example #3
0
 def __init__(self, step):
     # This is the only interesting part of this executor. Basically
     # it derives everything from SP_Step_Executor but does not
     # use the Queue mechanism, so the __init__ and the run
     # functions are copied from Base_Step_Executor
     Base_Step_Executor.__init__(self, step)