9 lines
160 B
Python
9 lines
160 B
Python
from utils.Singleton import Singleton
|
|
class A(metaclass=Singleton):
|
|
def __init__(self, a):
|
|
self.a = a
|
|
def printa(self):
|
|
print(self.a)
|
|
|
|
|