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?Mario Vormstein
01/16/2023, 2:34 PMfrom prefect import tags
with tags("db", "blue"):
my_flow("foo")
Mario Vormstein
01/16/2023, 4:02 PM@tags("test")
@flow(name="test name)
def do():
pass
Anna Geller