We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dee3ba commit c6f075cCopy full SHA for c6f075c
tests/test_family.py
@@ -37,7 +37,11 @@ def test_family():
37
38
def test_overlapping_family():
39
"""Check that each member of the family is only gathered once."""
40
- mob, child1, child2, = (Mobject(), Mobject(), Mobject())
+ (
41
+ mob,
42
+ child1,
43
+ child2,
44
+ ) = (Mobject(), Mobject(), Mobject())
45
gchild1, gchild2, gchild_common = Mobject(), Mobject(), Mobject()
46
child1.add(gchild1, gchild_common)
47
child2.add(gchild2, gchild_common)
@@ -57,7 +61,11 @@ def test_shift_family():
57
61
"""
58
62
# Note shift() needs the mobject to have a non-empty `points` attribute, so
59
63
# we cannot use a plain Mobject or VMobject. We use Circle instead.
60
- mob, child1, child2, = (Circle(), Circle(), Circle())
64
65
66
67
68
+ ) = (Circle(), Circle(), Circle())
69
gchild1, gchild2, gchild_common = Circle(), Circle(), Circle()
70
71
0 commit comments