From 0a087ce9e43519e55dc425a917afa226731b09d9 Mon Sep 17 00:00:00 2001 From: Dillon Laird Date: Fri, 4 Oct 2024 13:40:53 -0700 Subject: [PATCH] fix format issue --- vision_agent/tools/tools.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/vision_agent/tools/tools.py b/vision_agent/tools/tools.py index 63776be2..f83132a5 100644 --- a/vision_agent/tools/tools.py +++ b/vision_agent/tools/tools.py @@ -1846,9 +1846,7 @@ def save_video( if not isinstance(frame, np.ndarray) or ( frame.shape[0] == 0 and frame.shape[1] == 0 ): - raise ValueError( - "A frame is not a valid NumPy array with shape (H, W, C)" - ) + raise ValueError("A frame is not a valid NumPy array with shape (H, W, C)") if output_video_path is None: output_video_path = tempfile.NamedTemporaryFile(