Skip to main content
App version: 3.4.5

add_tags()

Adds the list of tags to the run.

Parameters

NameTypeDefaultDescription
tagsUnion[List[str], Set[str], Tuple[str]]-List or set of tags to add to the run.
group_tagsbool, optionalFalseAdd group tags instead of regular tags.

Example

with Run(...) as run:
run.add_tags(tags=["tag1", "tag2", "tag3"])