From 392fbd8e7461307243519143fbf38b3fa511b171 Mon Sep 17 00:00:00 2001 From: papush! Date: Sat, 7 Dec 2019 12:36:16 +0100 Subject: [PATCH] =?UTF-8?q?correction=20d=E2=80=99une=20faute=20de=20style?= =?UTF-8?q?=20dans=20singleton?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- engine/singleton.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/singleton.py b/engine/singleton.py index 53b0b87..b9b24f9 100644 --- a/engine/singleton.py +++ b/engine/singleton.py @@ -3,7 +3,7 @@ class Singleton(type): super(Singleton, cls).__init__(name, bases, dict) cls.instance = None - def __call__(cls,*args,**kw): + def __call__(cls, *args, **kw): if cls.instance is None: cls.instance = super(Singleton, cls).\ __call__(*args, **kw)