From 4abafe608a2f508cf59ab817fb1420f5a8633273 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 11 Feb 2019 16:11:53 -0800 Subject: [PATCH] Remove comment about ContinualAnimation --- manimlib/container/container.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/manimlib/container/container.py b/manimlib/container/container.py index 5686673f..5314f2f8 100644 --- a/manimlib/container/container.py +++ b/manimlib/container/container.py @@ -3,12 +3,6 @@ from manimlib.utils.config_ops import digest_config # Currently, this is only used by both Scene and Mobject. # Still, we abstract its functionality here, albeit purely nominally. # All actual implementation has to be handled by derived classes for now. -# -# Note that although the prototypical instances add and remove Mobjects, -# there is also the possibility to add ContinualAnimations to Scenes. Thus, -# in the Container class in general, we do not make any presumptions about -# what types of objects may be added; this is again dependent on the specific -# derived instance. # TODO: Move the "remove" functionality of Scene to this class