Skip to content

Commit

Permalink
refactor: Lint agents-api (CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
creatorrr authored and github-actions[bot] committed Dec 26, 2024
1 parent 15f5a89 commit 798c625
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion agents-api/agents_api/common/protocol/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,9 @@ def model_dump(self, *args, **kwargs) -> dict[str, Any]:

return dump | execution_input

async def prepare_for_step(self, *args, include_remote=False, **kwargs) -> dict[str, Any]:
async def prepare_for_step(
self, *args, include_remote=False, **kwargs
) -> dict[str, Any]:
# FIXME: include_remote is deprecated

current_input = self.current_input
Expand Down
6 changes: 3 additions & 3 deletions agents-api/tests/test_execution_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
from agents_api.routers.tasks.create_task_execution import start_execution

from .fixtures import (
test_agent,
test_developer_id,
pg_dsn,
client,
pg_dsn,
s3_client,
test_agent,
test_developer_id,
)
from .utils import patch_testing_temporal

Expand Down

0 comments on commit 798c625

Please sign in to comment.