Sean Conroy
06/13/2023, 9:16 PMtag1 = "mytag1"
tag2 = "mytag2"
with tags(f"{tag1}, {tag2}"):
state = my_flow()
Or maybe another way to do it?Deceivious
06/14/2023, 8:44 AMDeceivious
06/14/2023, 8:45 AMtags
context appends to existing tags. You will need to create a new tag context if you dont want to inherit existing tags. Examples in the link.Sean Conroy
06/14/2023, 3:12 PM