diff options
Diffstat (limited to 'src/main.py')
| -rw-r--r-- | src/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.py b/src/main.py index a17e39f..f9b9532 100644 --- a/src/main.py +++ b/src/main.py @@ -13,14 +13,14 @@ class mainWindow(QMainWindow): VERSION = 0.1 # Misc mysqlReachable: bool = False - # Utilisateur + # Utilisateur userConnected: bool = False userId: str = "" userEmail: str = "" userInscriptionDate: str = "" userStatus: str = "" def __init__(self) -> None: - super(mainWindow, self).__init__() + super().__init__() # Déclenche l'"__init__" de QMainWindow menu.init(self) pageHome.main(self) |
