Short name describing what triggered the graph break
Attempted super().delattr() on an object without mutation tracking
Values or code snippet captured at the break point
call_method {self} {name}
Explanation of why the graph break was triggered
Dynamo needs to track mutations on an object before super().__delattr__
can be used on it. But the object ({self.objvar}) doesn’t have attribute mutation tracking enabled.
Hints on how to resolve the graph break