After running 2to3

This commit is contained in:
Grant Sanderson
2018-08-09 17:56:05 -07:00
parent 06a65190e7
commit 858051a806
172 changed files with 2117 additions and 2221 deletions

View File

@ -177,9 +177,9 @@ class TriangleOfPowerIsBetter(Scene):
def construct(self):
top = TOP("x", "y", "z", radius = 0.75)
top.set_color(BLUE)
alts = VMobject(*map(TexMobject, [
alts = VMobject(*list(map(TexMobject, [
"x^y", "\\log_x(z)", "\\sqrt[y]{z}"
]))
])))
for mob, color in zip(alts.split(), OPERATION_COLORS):
mob.set_color(color)
alts.arrange_submobjects(DOWN)