Results 1 comments of 陳華

I currently use singleton to avoid this problem. ```py def singleton(cls): _instance = {} def inner(): if cls not in _instance: _instance[cls] = cls() return _instance[cls] return inner @singleton class...