Hi team, is Metaflow currently does not support co...
# ask-metaflow
s
Hi team, is Metaflow currently does not support conditional branches? Is there any way to achieve this?
1
d
the only way rn is to effectively move your branch inside the step code and have a “no-op” step.
f
What is “no-op” step?
And is there a plan in place to support conditional flows?
d
a step that doesn’t do anything. something like this:
Copy code
if not <evaluate conditional>:
  # Do step
self.next(self.next_step)
basically put the conditional inside the step and skip it if not relevant.
there are no current plans to support conditional flows. It’s been discussed but we don’t have a good idea for it yet.
s
Thank you for your reply
s
it does now
f
omg!!!!! this is huge! Thanks guys!