What is the syntax to delete an object that has been created in python, and than been registered with ParaView?<br><br>For example I create a sphere like this:<br> view = servermanager.GetRenderView() <br> sphere = servermanager.sources.SphereSource
(registrationGroup='sources', registrationName='del') <br> dataDisplay = servermanager.CreateRepresentation(sphere, view, registrationGroup='representations')<br><br>Than trying to delete it by using the del command (del sphere, etc) does not work.
<br>