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>&nbsp; view = servermanager.GetRenderView()&nbsp; <br>&nbsp; sphere = servermanager.sources.SphereSource
(registrationGroup=&#39;sources&#39;, registrationName=&#39;del&#39;)&nbsp;  <br>&nbsp; dataDisplay = servermanager.CreateRepresentation(sphere, view, registrationGroup=&#39;representations&#39;)<br><br>Than trying to delete it by using the del command (del sphere, etc) does not work. 
<br>