Ken Nguyen
03/04/2022, 6:39 PM@task
decorator on a function imported from a library (as opposed to one I defined)?Kevin Kho
some_func = task(some_func)
Ken Nguyen
03/04/2022, 6:43 PMsome_func(input1, input2=True, input3) = task( some_func(input1, input2=True, input3) )
?Kevin Kho
run
method