Skip to content

Commit 909b3c4

Browse files
committed
black
1 parent f4a17a5 commit 909b3c4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

manim/mobject/types/vectorized_mobject.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -644,10 +644,7 @@ def set_points_as_corners(self, points: Iterable[float]) -> "VMobject":
644644
# This will set the handles aligned with the anchors.
645645
# Id est, a bezier curve will be the segment from the two anchors such that the handles belongs to this segment.
646646
self.set_anchors_and_handles(
647-
*[
648-
interpolate(points[:-1], points[1:], a)
649-
for a in np.linspace(0, 1, nppcc)
650-
]
647+
*[interpolate(points[:-1], points[1:], a) for a in np.linspace(0, 1, nppcc)]
651648
)
652649
return self
653650

0 commit comments

Comments
 (0)