mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
added child_has_studio_override to abstract methods
This commit is contained in:
parent
5830b637d7
commit
ac116aaa02
1 changed files with 9 additions and 0 deletions
|
|
@ -302,6 +302,15 @@ class AbstractConfigObject:
|
||||||
"{} does not have implemented setter method `ignore_value_changes`"
|
"{} does not have implemented setter method `ignore_value_changes`"
|
||||||
).format(self))
|
).format(self))
|
||||||
|
|
||||||
|
@property
|
||||||
|
def child_has_studio_override(self):
|
||||||
|
"""Any children item is modified."""
|
||||||
|
raise NotImplementedError(
|
||||||
|
"{} does not have implemented `child_has_studio_override`".format(
|
||||||
|
self
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def child_modified(self):
|
def child_modified(self):
|
||||||
"""Any children item is modified."""
|
"""Any children item is modified."""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue