From 1b125df5724b6d83e028653a44a1379c33c241c3 Mon Sep 17 00:00:00 2001 From: Lalourche Date: Sat, 28 Mar 2020 22:02:13 +0100 Subject: [PATCH] Fixed execution of counting.py --- manimlib/once_useful_constructs/counting.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/manimlib/once_useful_constructs/counting.py b/manimlib/once_useful_constructs/counting.py index 1a46410b..326ad077 100644 --- a/manimlib/once_useful_constructs/counting.py +++ b/manimlib/once_useful_constructs/counting.py @@ -10,6 +10,7 @@ from manimlib.mobject.svg.tex_mobject import TexMobject from manimlib.mobject.types.vectorized_mobject import VGroup from manimlib.scene.scene import Scene +import itertools as it class CountingScene(Scene): CONFIG = { @@ -219,7 +220,7 @@ class CountInTernary(PowerCounter): def construct(self): self.count(27) - # def get_template_configuration(self): + # def get_template_configuration(self, place): # return [ORIGIN, UP] @@ -233,7 +234,7 @@ class CountInBinaryTo256(PowerCounter): def construct(self): self.count(128, 0.3) - def get_template_configuration(self): + def get_template_configuration(self, place): return [ORIGIN, UP]