On 09/17/2019 09:45 AM, Eko palypse wrote:

else:
     class FOO():
         def __init__(self, metaclass=Singleton):

In your test code, the `metaclass=Singleton` should be in `class Foo`:

    class FOO(metaclass=Singleton):
        ...

--
~Ethan~
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to