mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
attr_defs property returns list copy of attributes
This commit is contained in:
parent
36065080c7
commit
1d91ee5338
1 changed files with 7 additions and 2 deletions
|
|
@ -289,8 +289,13 @@ class AttributeValues(object):
|
|||
|
||||
@property
|
||||
def attr_defs(self):
|
||||
"""Pointer to attribute definitions."""
|
||||
return self._attr_defs
|
||||
"""Pointer to attribute definitions.
|
||||
|
||||
Returns:
|
||||
List[AbstractAttrDef]: Attribute definitions.
|
||||
"""
|
||||
|
||||
return list(self._attr_defs)
|
||||
|
||||
def data_to_store(self):
|
||||
"""Create new dictionary with data to store."""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue