This commit is contained in:
jxxghp
2025-03-01 18:55:16 +08:00
parent 8bd6ccb0de
commit 01f7c6bc2b
16 changed files with 49 additions and 49 deletions

View File

@@ -18,17 +18,17 @@ class SendEventAction(BaseAction):
@classmethod
@property
def name(cls) -> str:
def name(cls) -> str: # noqa
return "发送事件"
@classmethod
@property
def description(cls) -> str:
def description(cls) -> str: # noqa
return "发送任务执行事件"
@classmethod
@property
def data(cls) -> dict:
def data(cls) -> dict: # noqa
return SendEventParams().dict()
@property