nbaldwin commited on
Commit
41db545
1 Parent(s): 2cec66f

changed call controller logic

Browse files
Files changed (1) hide show
  1. ControllerExecutorFlow.py +1 -1
ControllerExecutorFlow.py CHANGED
@@ -118,7 +118,7 @@ class ControllerExecutorFlow(CompositeFlow):
118
 
119
  def call_controller(self):
120
  #first_round
121
- if self.flow_state["last_called"] is None:
122
  input_interface = self.input_interface_first_round_controller
123
  else:
124
  input_interface = self.input_interface_controller
 
118
 
119
  def call_controller(self):
120
  #first_round
121
+ if self.flow_state["current_round"] == 0:
122
  input_interface = self.input_interface_first_round_controller
123
  else:
124
  input_interface = self.input_interface_controller