hi! I'm debugging a flow with foreach + join steps...
# dev-metaflow
q
hi! I'm debugging a flow with foreach + join steps. On the join step I'm trying to access the value of the
inputs
parameter, but I can't find a way, is that possible? Basically I want to debug the join step
1
b
Copy code
@step
    def join(self,inputs):
        ts = []
        for x in inputs:
            ts.append(x.t)
        self.t = max(ts)
        self.next(self.end)
Here is an example where the
join
step is using
inputs
, which is passed as a parameter to
join()
If you want to debug you can simply put something like
Copy code
for x in inputs:
            print(x.t)
in your
join
step code
q
gotcha, thanks