Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
shankar-vision-eng committed May 29, 2024
1 parent ad1bc52 commit 55c4631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_agent/agent/agent_coder.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def parse_file_name(s: str) -> str:
return "".join([p for p in s.split(" ") if p.endswith(".png")])


def write_program(question: str, feedback: str, model: LLM, image: Optional[Union[str, Path]]=None) -> str:
def write_program(question: str, feedback: str, model: LLM, image: Optional[Union[str, Path]] = None) -> str:
prompt = PROGRAM.format(
docstring=TOOL_DOCSTRING, question=question, feedback=feedback
)
Expand Down

0 comments on commit 55c4631

Please sign in to comment.