remove_tags()
Removes the specified tags from the run.
Parameters
Name | Type | Default | Description |
---|---|---|---|
tags | Union[List[str], Set[str], Tuple[str]] | - | List or set of tags to remove from the run. |
group_tags | bool , optional | False | Remove group tags instead of regular tags. |
Example
with Run(...) as run:
run.remove_tags(tags=["tag2", "tag3"])