mirror of
1
0
Fork 0
dotbot/dotbot/util/singleton.py

8 lines
239 B
Python
Raw Normal View History

2014-03-19 23:07:30 -04:00
class Singleton(type):
_instances = {}
2022-01-30 18:48:30 -05:00
2014-03-19 23:07:30 -04:00
def __call__(cls, *args, **kwargs):
if cls not in cls._instances:
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
return cls._instances[cls]