fix(runtime): use pass for protocol stubs

This commit is contained in:
rayhpeng
2026-06-01 15:31:46 +08:00
parent 30bb2d5149
commit 9ed83c84dc
6 changed files with 28 additions and 14 deletions
@@ -10,7 +10,8 @@ from ..domain import Run
class RunExecutor(Protocol):
"""Executes one run against the underlying agent or graph runtime."""
async def execute(self, run: Run) -> None: ...
async def execute(self, run: Run) -> None:
pass
__all__ = [
@@ -16,7 +16,8 @@ class RunExecutionHandle:
class RunExecutionScheduler(Protocol):
"""Starts background execution for an accepted run."""
async def start(self, run_id: RunId) -> RunExecutionHandle: ...
async def start(self, run_id: RunId) -> RunExecutionHandle:
pass
__all__ = [
@@ -10,7 +10,8 @@ from ..domain import CancelAction, RunId
class RunSupervisor(Protocol):
"""Controls lifecycle operations for already scheduled runs."""
async def cancel(self, run_id: RunId, *, action: CancelAction = CancelAction.interrupt) -> bool: ...
async def cancel(self, run_id: RunId, *, action: CancelAction = CancelAction.interrupt) -> bool:
pass
__all__ = [