bardovv
03/24/2020, 10:48 AMemre
03/24/2020, 11:27 AMbardovv
03/24/2020, 11:30 AMemre
03/24/2020, 11:31 AMConstant[range]
is returning a range, in other words a list right?bardovv
03/24/2020, 11:31 AMemre
03/24/2020, 11:32 AMdec.map(x=range_task)
instead of dec(x=range_task)
dec
would receive the entire list as a parameter.bardovv
03/24/2020, 11:33 AMemre
03/24/2020, 11:34 AMdec.map(x=range_task)
prefect iterates over the input list it receives from range_task
, and runs a dec
task for each element in the received list.bardovv
03/24/2020, 11:35 AMemre
03/24/2020, 11:35 AMbardovv
03/24/2020, 11:36 AMemre
03/24/2020, 11:36 AMbardovv
03/24/2020, 11:37 AMemre
03/24/2020, 11:38 AMbardovv
03/24/2020, 11:38 AM