ecFlow's documentation is now on readthedocs!

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

late = ecflow.Late()
late.submitted( 20,10 ) # hour, min
late.active( 2, 10 ) # hour, min
late.complete( 3, 10, True) # hour, min, relative
t1 = ecflow.Task("t1").add_late( late )

# Can also pass late into the Task constructor
t2 = ecflow.Task('t2',late)  
  • No labels