From 55a6a0b906402dba7fcc61196bdcfeb63ca59d72 Mon Sep 17 00:00:00 2001 From: Sridhar Ramesh Date: Mon, 29 Jan 2018 13:46:38 -0800 Subject: [PATCH] Minor cleanup --- animation/simple_animations.py | 2 -- scene/scene.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/animation/simple_animations.py b/animation/simple_animations.py index 2af32795..c151a326 100644 --- a/animation/simple_animations.py +++ b/animation/simple_animations.py @@ -10,8 +10,6 @@ from animation import Animation from animation import sync_animation_run_times_and_rate_funcs from transform import Transform -from traceback import * - class Rotating(Animation): CONFIG = { "axis" : OUT, diff --git a/scene/scene.py b/scene/scene.py index e4a9bec9..8d992d93 100644 --- a/scene/scene.py +++ b/scene/scene.py @@ -43,7 +43,7 @@ class Scene(Container): def __init__(self, **kwargs): Container.__init__(self, **kwargs) # Perhaps allow passing in a non-empty *mobjects parameter? self.camera = self.camera_class(**self.camera_config) - self.mobjects = [] #TODO: fiddle with this line... to match name used in Container + self.mobjects = [] self.continual_animations = [] self.foreground_mobjects = [] self.num_plays = 0