From 3da458558ad4dfbf0f1c78700a0ec1e1a3efe13a Mon Sep 17 00:00:00 2001 From: ninemine <1371605831@qq.com> Date: Thu, 20 Nov 2025 14:18:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=BA=A2=E5=8C=85=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E4=B8=AD=E7=9A=84wakeup=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Plugins/WPSRedPacketBase.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Plugins/WPSRedPacketBase.py b/Plugins/WPSRedPacketBase.py index 3d84ed4..39cc44b 100644 --- a/Plugins/WPSRedPacketBase.py +++ b/Plugins/WPSRedPacketBase.py @@ -1,8 +1,5 @@ from __future__ import annotations - -from typing import List, Sequence, Tuple - -from PWF.Convention.Runtime.Architecture import Architecture +from PWF.Convention.Runtime.Architecture import * from PWF.Convention.Runtime.GlobalConfig import ConsoleFrontColor, ProjectConfig from Plugins.WPSAPI import GuideEntry, WPSAPI @@ -15,6 +12,9 @@ logger: ProjectConfig = Architecture.Get(ProjectConfig) class WPSRedPacketBase(WPSAPI): """红包插件公共基类,封装参数解析与输出模板。""" + @override + def wake_up(self) -> None: + pass def dependencies(self) -> List[type]: return [WPSAPI, WPSConfigAPI, WPSRedPacketService]