quiet-motherboard-43023
12/23/2021, 1:47 PMinputs
parameter, but I can't find a way, is that possible? Basically I want to debug the join stepbrave-lion-15961
12/23/2021, 4:14 PM@step
def join(self,inputs):
ts = []
for x in inputs:
ts.append(x.t)
self.t = max(ts)
self.next(self.end)
brave-lion-15961
12/23/2021, 4:16 PMjoin
step is using inputs
, which is passed as a parameter to join()
brave-lion-15961
12/23/2021, 4:19 PMfor x in inputs:
print(x.t)
in your join
step codequiet-motherboard-43023
12/26/2021, 2:52 PM