Adam Brusselback
05/05/2021, 4:27 PMUserWarning: A Task was passed as an argument to PostgresExecute, you likely want to first initialize PostgresExecute with any static (non-Task) arguments, then call the initialized task with any dynamic (Task) arguments instead. For example:
my_task = PostgresExecute(...) # static (non-Task) args go here
res = my_task(...) # dynamic (Task) args go here
see <https://docs.prefect.io/core/concepts/flows.html#apis> for more info.