faint-doctor-19263
06/21/2024, 6:04 PMfast-vr-44972
06/21/2024, 6:07 PMcrooked-jordan-29960
06/21/2024, 6:08 PMfaint-doctor-19263
06/21/2024, 6:08 PMfaint-doctor-19263
06/21/2024, 6:15 PMcrooked-jordan-29960
06/21/2024, 6:51 PMfrom metaflow import FlowSpec, step, project
@project(name='test_deco')
class F(FlowSpec):
@step
def start(self):
self.next(self.end)
@step
def end(self):
pass
if __name__ == '__main__':
F()
Can you send a template of the flow that is not working for you?faint-doctor-19263
06/21/2024, 7:07 PMfaint-doctor-19263
06/21/2024, 9:42 PMcrooked-jordan-29960
06/21/2024, 10:03 PMfaint-doctor-19263
06/21/2024, 10:09 PMflow._flow_decorators and then invoking the CLI as if use_cli was True.crooked-jordan-29960
06/22/2024, 1:49 AM