From 71225bf045cc401d0338bebf71fcba7b615747e9 Mon Sep 17 00:00:00 2001 From: misyaguziya Date: Thu, 26 Sep 2024 12:50:00 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8D=EF=B8=8F[Update]=20Model=20:=20Wat?= =?UTF-8?q?chdog=E3=81=AE=E5=BC=95=E6=95=B0(*args,=20**kwargs)=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src-python/webui_controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-python/webui_controller.py b/src-python/webui_controller.py index 109f533b..23aa9a89 100644 --- a/src-python/webui_controller.py +++ b/src-python/webui_controller.py @@ -1528,7 +1528,7 @@ class Controller: th_download.start() @staticmethod - def startWatchdog() -> dict: + def startWatchdog(*args, **kwargs) -> dict: model.startWatchdog() return {"status":200, "result":True} @@ -1538,7 +1538,7 @@ class Controller: return {"status":200, "result":True} @staticmethod - def stopWatchdog() -> dict: + def stopWatchdog(*args, **kwargs) -> dict: model.stopWatchdog() return {"status":200, "result":True}