added utils.py with Singleton metaclass

This commit is contained in:
Alexey Sokolov
2022-02-18 15:10:00 +03:00
parent 3cd506682f
commit 0a08b23b72
2 changed files with 11 additions and 2 deletions

8
utils.py Normal file
View File

@@ -0,0 +1,8 @@
class Singleton(type):
"""Singleton metaclass"""
_instances = {}
def __call__(cls, *args, **kwargs):
if cls not in cls._instances:
cls._instances[cls] = super().__call__(*args, **kwargs)
return cls._instances[cls]