VMSI's picture
Upload 281 files
0690950
raw
history blame contribute delete
173 Bytes
class Singleton(object):
@classmethod
def get_instance(cls):
if not hasattr(cls, "_instance"):
cls._instance = cls()
return cls._instance