Skip to content

Commit

Permalink
Remove Mobject.print_family, as that is now in utils.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
3b1b committed Dec 7, 2019
1 parent 84e7bdb commit 94a3883
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions manimlib/mobject/mobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -971,12 +971,6 @@ def shuffle(self, recursive=False):
submob.shuffle(recursive=True)
random.shuffle(self.submobjects)

def print_family(self, n_tabs=0):
"""For debugging purposes"""
print("\t" * n_tabs, self, id(self))
for submob in self.submobjects:
submob.print_family(n_tabs + 1)

# Just here to keep from breaking old scenes.
def arrange_submobjects(self, *args, **kwargs):
return self.arrange(*args, **kwargs)
Expand Down

0 comments on commit 94a3883

Please sign in to comment.