Alexander Kloumann
09/01/2022, 2:53 PMAnna Geller
09/01/2022, 4:08 PMAlexander Kloumann
09/01/2022, 4:42 PMsource_ids = ['a', 'b', 'c']
with Flow("flow_name") as flow:
for source_id in source_ids:
data = extract(source_id)
if data:
data = transform(data)
load(data)
But if/else statements like this produce strange behavior and don't work as expected.
Thanks!Jeff Hale
09/02/2022, 1:29 AM