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

@ -242,10 +242,10 @@ class ComputationalNetwork(MovingCameraScene):
self.value_labels = value_labels
self.revert_to_formula_animations = [
ApplyMethod(term.set_fill, {"opacity": 1})
for term in x_in_f, x_in_g, f_in_h, g_in_h
for term in (x_in_f, x_in_g, f_in_h, g_in_h)
] + [
FadeOut(term)
for term in two_copy1, two_copy2, four_copy, one_copy
for term in (two_copy1, two_copy2, four_copy, one_copy)
]
def compare_x_and_h_wiggling(self):
@ -552,7 +552,7 @@ class ComputationalNetwork(MovingCameraScene):
group,
submobject_mode="one_at_a_time"
)
for group in top_lines, bottom_lines
for group in (top_lines, bottom_lines)
])
self.wait()
self.play(FadeOut(rect))