Skip to content

Commit f82f385

Browse files
authored
Update to use new src (#177)
1 parent 5abaacc commit f82f385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/teams/team-one/src/team_one/agents/file_surfer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async def on_request_reply_message(
8989
final_result = response.content
9090

9191
elif isinstance(response.content, list) and all(isinstance(item, FunctionCall) for item in response.content):
92-
results = await asyncio.gather(*[await self.send_message(call, self.id) for call in response.content])
92+
results = await asyncio.gather(*[self.send_message(call, self.id) for call in response.content])
9393
for result in results:
9494
assert isinstance(result, FunctionExecutionResult)
9595
final_result = "\n".join(result.content for result in results)

0 commit comments

Comments
 (0)