Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
wuyiqunLu committed Jul 26, 2024
1 parent 648e667 commit de1b11e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vision_agent/agent/vision_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,9 @@ def write_and_test_code(
log_progress(
{
"type": "log",
"log_content": "Code exeuction succeed" if result.success else "Code execution failed",
"log_content": (
"Code exeuction succeed" if result.success else "Code execution failed"
),
"status": "completed" if result.success else "failed",
"code": DefaultImports.prepend_imports(code),
"payload": {
Expand Down

0 comments on commit de1b11e

Please sign in to comment.