Explicit tulle required in comprehension in Python 3

This commit is contained in:
cclauss 2018-09-11 19:18:44 +02:00 committed by GitHub
parent d683a5c04b
commit cbe641e93c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,7 @@ class WorkOutNumerically(Scene):
non_numbers = VGroup(*[m for m in det if m not in numbers])
matrix_numbers = VGroup(*[
matrix.mob_matrix[i][j].copy()
for i, j in (0, 0), (1, 1), (0, 1), (1, 0)
for i, j in ((0, 0), (1, 1), (0, 1), (1, 0))
])
self.play(
LaggedStart(FadeIn, non_numbers, run_time=1),