Browse Source

small fix

Simon Van Mierlo 9 years ago
parent
commit
483afff3e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/python_sccd/python_sccd_runtime/statecharts_core.py

+ 1 - 1
src/python_sccd/python_sccd_runtime/statecharts_core.py

@@ -995,7 +995,7 @@ class RuntimeClassBase(object):
                 not self.combo_step.has_stepped and
                     self.semantics.input_event_lifeline == StatechartSemantics.FirstSmallStep))):
             result += self.big_step.input_events
-        return set(result)
+        return result
 
     def raiseInternalEvent(self, event):
         if self.semantics.internal_event_lifeline == StatechartSemantics.NextSmallStep: