
April 8, 2022
3:51 a.m.
On Fri, 8 Apr 2022 at 09:29, Malthe <mborch@gmail.com> wrote:
A workflow definition which could be a 5-liner quickly becomes a 20-liner – consider for example:
default_args = { "start_date": @datetime.datetime(...) }
Are you exaggerating for effect here or would this *actually* just expand to from datetime import datetime default_args = { "start_date": datetime(...) } I'm not suggesting that there isn't a genuine benefit here, but your example doesn't demonstrate what it is. Paul