Spaces:
Runtime error
Runtime error
File size: 217 Bytes
ba12b59 |
1 2 3 4 5 6 7 8 9 10 |
def singleton(cls):
instances = {}
def get_instance(*args, **kwargs):
if cls not in instances:
instances[cls] = cls(*args, **kwargs)
return instances[cls]
return get_instance
|