Mario Vormstein
01/16/2023, 2:22 PM@task
decorator and I can see in the UI that a flow can have tags as well. But the @flow
decorator does not have such an option?from prefect import tags
with tags("db", "blue"):
my_flow("foo")
@tags("test")
@flow(name="test name)
def do():
pass
Anna Geller
01/16/2023, 4:22 PM