from utils.Singleton import Singleton class A(metaclass=Singleton): def __init__(self, a): self.a = a def printa(self): print(self.a)