crafty-4/app/classes/shared/singleton.py

8 lines
239 B
Python
Raw Normal View History

2022-05-26 12:50:20 +00:00
class Singleton(type):
_instances = {}
def __call__(cls, *args, **kwargs):
if cls not in cls._instances:
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
return cls._instances[cls]