John Ramirez
04/17/2020, 4:08 PMbatch_run_date = Parameter(
name='batch_run_date',
default=(datetime.today() - timedelta(days=1)).strftime('%Y-%m-%d')
)
in perfect 0.9.*
this would alter the default value based on the current date. But in prefect 0.10.1
the default date is fixed. Is there a a different way I can reproduce the previous functionalityChris White
04/17/2020, 4:26 PMJohn Ramirez
04/17/2020, 7:30 PM