Skip to content

Commit d55f6b2

Browse files
committed
Fix mypy
1 parent a9c7201 commit d55f6b2

File tree

1 file changed

+1
-1
lines changed
  • agents-core/vision_agents/core/agents

1 file changed

+1
-1
lines changed

agents-core/vision_agents/core/agents/agents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1359,7 +1359,7 @@ async def _get_video_track_override(self) -> VideoFileTrack:
13591359
if not self._video_track_override_path:
13601360
raise ValueError("video_track_override_path is not set")
13611361
return await asyncio.to_thread(
1362-
lambda: VideoFileTrack(self._video_track_override_path)
1362+
lambda p: VideoFileTrack(p), self._video_track_override_path
13631363
)
13641364

13651365

0 commit comments

Comments
 (0)