mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
implemented 'get' in 'PublishAttributes'
This commit is contained in:
parent
d962e01c53
commit
0348e9ea22
1 changed files with 3 additions and 0 deletions
|
|
@ -271,6 +271,9 @@ class PublishAttributes:
|
|||
def items(self):
|
||||
return self._data.items()
|
||||
|
||||
def get(self, key, default=None):
|
||||
return self._data.get(key, default)
|
||||
|
||||
def pop(self, key, default=None):
|
||||
"""Remove or reset value for plugin.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue