test / src /utils /singleton.py
Akcom's picture
Simple demo
54a235d
raw
history blame contribute delete
240 Bytes
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]