Howdy if I run `datetime.now()` inside of a flow, ...
# prefect-community
j
Howdy if I run
datetime.now()
inside of a flow, not a task will that update on each run?
k
It will not because it will be evaluated during Flow registration.
j
Ok thank you