I registered a local utility through generic setup and then updated the __init__ code later. I was surprised to found that the object is not reinitialized when I restart the instance. The utility was just a simple object that subclass the general object class.
How can I make the Utility initialize again ?
**Edit: After see Martijn Pieters’s explanation I understand that local utility is always persistent. So how can I delete it and then readd it later ?
Since the comments answered my question already, this is a little sum up so I can close the question:
Thanks Martijn Pieters and vangheem