Enda Peng
05/17/2021, 8:20 PMflow.register()
function? I notice that if I use prefect register
command line tool, the label is exactly what I provided, but if I use python code, it will be added. I read the doc and it says this is the desired behavior, wonder if there is a way to get it removed?Kevin Kho
flow.register(xxx, labels=['label1])
?Enda Peng
05/17/2021, 8:26 PMflow.register(
project_name="tester",
labels=["atest"])
and this is the output
Flow URL: <https://cloud.prefect.io/enda-databento-com-s-account/flow/3bc76340-bc96-41db-9001-c4478bfbaec0>
└── ID: 01daa619-c29a-4723-87c8-a77d561784c5
└── Project: tester
└── Labels: ['atest', 'enda-work.local']
Kevin Kho
add_default_labels = False
Enda Peng
05/17/2021, 8:33 PM