From e51fd602bf54b781043ce1cd5e9d63634b03a2b2 Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Sun, 14 Apr 2024 06:08:43 +0900 Subject: [PATCH] =?UTF-8?q?[bugfix]=20controller.py:=20=E5=BC=95=E6=95=B0?= =?UTF-8?q?=E5=90=8D=E3=81=8C=E9=81=95=E3=81=86=E3=81=93=E3=81=A8=E3=81=AB?= =?UTF-8?q?=E3=82=88=E3=82=8B=E3=82=A8=E3=83=A9=E3=83=BC=E3=81=AE=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3=E3=80=82fnc->func?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller.py b/controller.py index 4eb48038..fb1d5f36 100644 --- a/controller.py +++ b/controller.py @@ -8,9 +8,9 @@ from utils import getKeyByValue, isUniqueStrings, strPctToInt import argparse # Common -def callbackUpdateSoftware(fnc=None): +def callbackUpdateSoftware(func=None): setMainWindowGeometry() - model.updateSoftware(restart=True, fnc=fnc) + model.updateSoftware(restart=True, func=func) def callbackRestartSoftware(): setMainWindowGeometry()