def __delattr__(self, name):
     try:
         del self[name]
     except KeyError:
         raise AttributeError(_ERROR_ATTRIBUTE_MISSING.format('Entity', name))
Beispiel #2
0
 def __delattr__(self, name):
     try:
         del self[name]
     except KeyError:
         raise AttributeError(_ERROR_ATTRIBUTE_MISSING.format('Entity', name))