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

Fix typo.

parent 829792ef
......@@ -7,7 +7,7 @@ class Singleton(object):
_inst = None
def __new__(cls):
if cls._inst is None:
cls._inst = super(_Singleton, cls).__new__(cls)
cls._inst = super(Singleton, cls).__new__(cls)
return cls._inst
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