From 8f556ffb89cda3a5daf5328328796a0b72f0e99f Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 4 Feb 2019 14:58:15 -0800 Subject: [PATCH] print_submobject_family -> print_family --- manimlib/mobject/mobject.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manimlib/mobject/mobject.py b/manimlib/mobject/mobject.py index 117d9605..445c8be3 100644 --- a/manimlib/mobject/mobject.py +++ b/manimlib/mobject/mobject.py @@ -894,11 +894,11 @@ class Mobject(Container): submob.shuffle_submobjects(recursive=True) random.shuffle(self.submobjects) - def print_submobject_family(self, n_tabs=0): + def print_family(self, n_tabs=0): """For debugging purposes""" print("\t" * n_tabs, self, id(self)) for submob in self.submobjects: - submob.print_submobject_family(n_tabs + 1) + submob.print_family(n_tabs + 1) # Alignment def align_data(self, mobject):