Skip to main content
App version: 3.4.6

remove_tags()

Removes the specified tags from the run.

Parameters

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

Example

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