Skip to content

Commit

Permalink
fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Oct 4, 2024
1 parent b846ed8 commit fc24103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_agent/agent/vision_agent_coder.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def generate_code_from_plan(
success = cast(bool, results["success"])
code = remove_installs_from_code(cast(str, results["code"]))
test = remove_installs_from_code(cast(str, results["test"]))
working_memory.extend(results["working_memory"]) # type: ignore
working_memory.extend(results["working_memory"])

execution_result = cast(Execution, results["test_result"])

Expand Down

0 comments on commit fc24103

Please sign in to comment.