Skip to content

Commit 1c5072a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0b6ca7c commit 1c5072a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

manim/mobject/types/vectorized_mobject.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
]
1313

1414

15-
from bisect import bisect_left
1615
import itertools as it
1716
import sys
17+
from bisect import bisect_left
1818
from typing import (
1919
TYPE_CHECKING,
2020
Callable,
@@ -1005,7 +1005,7 @@ def change_anchor_mode(self, mode: Literal["jagged", "smooth"]) -> Self:
10051005
h1, h2 = get_smooth_handle_points(anchors)
10061006
submob.points[start + 1 : end : nppcc] = h1
10071007
submob.points[start + 2 : end : nppcc] = h2
1008-
1008+
10091009
return self
10101010

10111011
def make_smooth(self) -> Self:
@@ -1724,7 +1724,7 @@ def get_anchors(self) -> Point3D_Array:
17241724
"""
17251725
if self.points.shape[0] == 1:
17261726
return self.points
1727-
1727+
17281728
num_curves = self.get_num_curves()
17291729
anchors = np.empty((2 * num_curves, self.dim))
17301730
# Every end anchor ends a Bézier curve, but not every start anchor

0 commit comments

Comments
 (0)