Daniel Nilsen
02/17/2022, 12:47 PMdata
. But when I try to access this in the flow I get 'FunctionTask' object has no attribute 'data'
. How do I access the response.data?
with Flow('data_transformation') as flow:
response = myTask()
response.data //error
Anna Geller
@task(log_stdout=True)
def print_response_data(response):
print(response.data)
Daniel Nilsen
02/17/2022, 1:29 PM