added representation of object to not implemented exception

This commit is contained in:
iLLiCiTiT 2020-09-07 11:02:55 +02:00
parent ed6c1609dc
commit 93658f8a3e

View file

@ -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)
)
)