mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Explicit tulle required in comprehension in Python 3
This commit is contained in:
parent
d683a5c04b
commit
cbe641e93c
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Reference in a new issue