@@ -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]
The note is not visible to the blocked user.