From 6bd431d748e35aa281068659965d707130a18bfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Eertmans?= Date: Thu, 4 Jan 2024 13:06:56 +0100 Subject: [PATCH] chore(lib): remove useless var --- manim_slides/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manim_slides/utils.py b/manim_slides/utils.py index 49e79fa..d53714a 100644 --- a/manim_slides/utils.py +++ b/manim_slides/utils.py @@ -86,7 +86,7 @@ def reverse_video_file(src: Path, dest: Path) -> None: graph.push(None) # EOF: https://github.com/PyAV-Org/PyAV/issues/886. - for i in range(frames_count): + for _ in range(frames_count): frame = graph.pull() frame.pict_type = 1 # Otherwise we get a warning saying it is changed output.mux(output_stream.encode(frame))