如何更新/删除本地实用程序?
我通过通用设置注册了一个本地实用程序,然后更新了 __init__ 代码。我惊讶地发现当我重新启动实例时该对象没有重新初始化。该实用程序只是一个简单的对象,它是通用object
类的子类。
如何使实用程序再次初始化?
**编辑:看到 Martijn Pieters 的解释后,我明白本地实用程序始终是持久的。那么如何删除它然后再重新添加呢?
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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于评论已经回答了我的问题,这是一个小总结,因此我可以结束问题:
感谢 Martijn Pieters 和 vangheem
Since the comments answered my question already, this is a little sum up so I can close the question:
Thanks Martijn Pieters and vangheem