Jacob Bedard
06/08/2023, 9:27 PMdef little_function(thing):
print(thing)
@task(name='big function')
def big_function(list_of_things):
for thing in list_of_things:
little_function(thing)
Zanie
Zanie
Jacob Bedard
06/08/2023, 10:46 PMJacob Bedard
06/09/2023, 7:16 PMZanie