We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90eef30 commit f1d28eeCopy full SHA for f1d28ee
manim/animation/composition.py
@@ -36,7 +36,9 @@ def __init__(
36
self.animations = [prepare_animation(anim) for anim in animations]
37
self.group = group
38
if self.group is None:
39
- mobjects = remove_list_redundancies([anim.mobject for anim in self.animations])
+ mobjects = remove_list_redundancies(
40
+ [anim.mobject for anim in self.animations]
41
+ )
42
if config["renderer"] == "opengl":
43
self.group = OpenGLGroup(*mobjects)
44
else:
0 commit comments