Skip to content

Commit 6e1ad57

Browse files
Lucas Riccimergify-bot
andauthored
Add missing () in the files reported in issue #2389 (manim/manim/mobject/types/vectorized_mobject.py and opengl_vectorized_mobject.py) (#2438) (#2438)
Add missing () in the files reported in issue #2389 * Quick fix * Quick fix * Removing .rotate() * Removing .rotate() * Merge branch 'main' into fix-issue-2389 * Merge branch 'main' into fix-issue-2389 Co-authored-by: mergify-bot <[email protected]>
1 parent 838c0fd commit 6e1ad57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

manim/mobject/types/opengl_vectorized_mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ def reverse_direction(self):
671671
class ChangeOfDirection(Scene):
672672
def construct(self):
673673
ccw = RegularPolygon(5)
674-
ccw.shift(LEFT).rotate
674+
ccw.shift(LEFT)
675675
cw = RegularPolygon(5)
676676
cw.shift(RIGHT).reverse_direction()
677677

manim/mobject/types/vectorized_mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1687,7 +1687,7 @@ def reverse_direction(self):
16871687
class ChangeOfDirection(Scene):
16881688
def construct(self):
16891689
ccw = RegularPolygon(5)
1690-
ccw.shift(LEFT).rotate
1690+
ccw.shift(LEFT)
16911691
cw = RegularPolygon(5)
16921692
cw.shift(RIGHT).reverse_direction()
16931693

0 commit comments

Comments
 (0)