From 6657e15cfadb00cc361090bd29bcfeb5aca457d4 Mon Sep 17 00:00:00 2001 From: Jdrezen <jeremie.drezen@gmail.com> Date: Wed, 12 May 2021 14:43:49 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20nom=20de=20m=C3=A9thode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyAmakIHM/classes/controleur.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyAmakIHM/classes/controleur.py b/pyAmakIHM/classes/controleur.py index eef2dcf..3191907 100644 --- a/pyAmakIHM/classes/controleur.py +++ b/pyAmakIHM/classes/controleur.py @@ -237,14 +237,14 @@ class Controleur: def updateWindow(env,amas): pass - def __initialisation(self) -> None: + def initialisation(self) -> None: pass """ Launch the amas in a thread and display the window """ def start(self) -> None: - self.__initialisation() + self.initialisation() self.__th = Thread(target=self.__amas.start) self.__th.start() self.__fenetre.display() -- GitLab