Commit 8f8dbd12 authored by Jason Swails's avatar Jason Swails
Browse files

Fix typo.

parent 829792ef
...@@ -7,7 +7,7 @@ class Singleton(object): ...@@ -7,7 +7,7 @@ class Singleton(object):
_inst = None _inst = None
def __new__(cls): def __new__(cls):
if cls._inst is None: if cls._inst is None:
cls._inst = super(_Singleton, cls).__new__(cls) cls._inst = super(Singleton, cls).__new__(cls)
return cls._inst return cls._inst
def __reduce__(self): def __reduce__(self):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment