Skip to content

Commit

Permalink
fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Sep 24, 2024
1 parent 10d5731 commit d889de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_agent/tools/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,7 @@ def _save_video_to_result(video_uri: str) -> None:
def overlay_bounding_boxes(
medias: Union[np.ndarray, List[np.ndarray]],
bboxes: Union[List[Dict[str, Any]], List[List[Dict[str, Any]]]],
) -> np.ndarray:
) -> Union[np.ndarray, List[np.ndarray]]:
"""'overlay_bounding_boxes' is a utility function that displays bounding boxes on
an image.
Expand Down

0 comments on commit d889de5

Please sign in to comment.