From ea94762510bb9935fa6a730ccd44df4ec53bce56 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Thu, 13 Feb 2025 09:12:59 -0500 Subject: [PATCH] Style code --- auto_editor/render/video.py | 1 + 1 file changed, 1 insertion(+) diff --git a/auto_editor/render/video.py b/auto_editor/render/video.py index 3141dc23a..a47ca3ee5 100644 --- a/auto_editor/render/video.py +++ b/auto_editor/render/video.py @@ -28,6 +28,7 @@ class VideoFrame: allowed_pix_fmt = av.video.frame.supported_np_pix_fmts + def make_solid(width: int, height: int, pix_fmt: str, bg: str) -> av.VideoFrame: hex_color = bg.lstrip("#").upper() rgb_color = tuple(int(hex_color[i : i + 2], 16) for i in {0, 2, 4})