Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MingruiZhang committed Aug 27, 2024
1 parent 7280709 commit fba9cc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 @@ -678,7 +678,7 @@ def chat_with_workflow(
chat: List[Message],
test_multi_plan: bool = True,
display_visualization: bool = False,
customized_tool_names: List[str] | None = None,
customized_tool_names: Optional[List[str]] = None,
) -> Dict[str, Any]:
"""Chat with VisionAgentCoder and return intermediate information regarding the
task.
Expand Down
2 changes: 1 addition & 1 deletion vision_agent/tools/tool_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def get_tool_descriptions(funcs: List[Callable[..., Any]]) -> str:


def get_tool_descriptions_by_names(
tool_name: List[str] | None,
tool_name: Optional[List[str]],
funcs: List[Callable[..., Any]],
util_funcs: List[
Callable[..., Any]
Expand Down

0 comments on commit fba9cc4

Please sign in to comment.