File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
66
77### Added
88
9+ - Add tags attribute to Description class
910- Description: Ability Hand (MJCF)
1011- Description: Ability Hand (URDF)
1112- Description: Apptronik Apollo (MJCF)
Original file line number Diff line number Diff line change @@ -27,14 +27,17 @@ class Description:
2727 """
2828
2929 formats : Set [Format ]
30+ tags : Set [str ]
3031
31- def __init__ (self , single_format ):
32+ def __init__ (self , single_format : Format , tags : Set [ str ] = set () ):
3233 """Initialize a description that provides a single format.
3334
3435 Args:
3536 single_format: Format provided by the description.
37+ tags: Set of strings describing properties of the description.
3638 """
3739 self .formats = {single_format }
40+ self .tags = tags
3841
3942 @property
4043 def has_mjcf (self ) -> bool :
You can’t perform that action at this time.
0 commit comments