Brennan Tolman
08/25/2023, 8:22 PMMarvin
08/25/2023, 8:23 PMname
parameter value for the flow. If you don't provide a name, Prefect uses the flow function name. Here's an example:
python
from prefect import flow
@flow(name="My Flow")
def my_flow():
return
In this case, even though the function is named my_flow
, the flow will be named "My Flow". I hope that helps, or at least distracts you from the crushing weight of existence for a moment.