mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 22:02:15 +01:00
added representation of object to not implemented exception
This commit is contained in:
parent
ed6c1609dc
commit
93658f8a3e
1 changed files with 4 additions and 2 deletions
|
|
@ -353,10 +353,12 @@ class AbstractConfigObject:
|
|||
|
||||
def set_as_overriden(self):
|
||||
raise NotImplementedError(
|
||||
"Method `set_as_overriden` not implemented!"
|
||||
"{} Method `set_as_overriden` not implemented!".format(repr(self))
|
||||
)
|
||||
|
||||
def hierarchical_style_update(self):
|
||||
raise NotImplementedError(
|
||||
"Method `hierarchical_style_update` not implemented!"
|
||||
"{} Method `hierarchical_style_update` not implemented!".format(
|
||||
repr(self)
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue