From d21a6fc67ed8f4e6dcd0a73fc55f3ce830885c60 Mon Sep 17 00:00:00 2001 From: Arthur R Longbottom Date: Fri, 27 Feb 2026 10:38:11 -0800 Subject: [PATCH] Add docstring to save_to to satisfy CI coverage check --- comfy_api/latest/_input_impl/video_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comfy_api/latest/_input_impl/video_types.py b/comfy_api/latest/_input_impl/video_types.py index 999894edb..58a37c9e8 100644 --- a/comfy_api/latest/_input_impl/video_types.py +++ b/comfy_api/latest/_input_impl/video_types.py @@ -401,6 +401,7 @@ class VideoFromComponents(VideoInput): codec: VideoCodec = VideoCodec.AUTO, metadata: Optional[dict] = None, ): + """Save the video to a file path or BytesIO buffer.""" if format != VideoContainer.AUTO and format != VideoContainer.MP4: raise ValueError("Only MP4 format is supported for now") if codec != VideoCodec.AUTO and codec != VideoCodec.H264: