fix actionid type

This commit is contained in:
jxxghp
2025-02-26 20:28:10 +08:00
parent 403d600db4
commit e3d4b19dac
3 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ class WorkflowOper(DbOper):
"""
return Workflow.fail(self._db, wid, result)
def step(self, wid: int, action_id: int, context: dict) -> bool:
def step(self, wid: int, action_id: str, context: dict) -> bool:
"""
步进
"""