You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
247 B
11 lines
247 B
class Singleton:
|
|
__instance = None
|
|
|
|
def __new__(cls, *args, **kwargs):
|
|
if cls.__instance is None:
|
|
cls.__instance = super(Singleton, cls).__new__(cls)
|
|
return cls.__instance
|
|
|
|
def __init__(self):
|
|
pass
|
|
|