Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
Add missing typehint
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno committed Jul 29, 2023
1 parent 462c07e commit 4835465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agbenchmark/agent_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
configuration = Configuration(host="http://localhost:8000")


async def run_agent(task: str):
async def run_agent(task: str) -> None:
async with ApiClient(configuration) as api_client:
api_instance = AgentApi(api_client)
task_request_body = TaskRequestBody(input=task)
Expand Down

0 comments on commit 4835465

Please sign in to comment.