Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions manim/utils/iterables.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

T = TypeVar("T")
U = TypeVar("U")
F = TypeVar("F", np.float_, np.int_)
F = TypeVar("F", np.float64, np.int_)
H = TypeVar("H", bound=Hashable)


Expand Down Expand Up @@ -311,8 +311,8 @@ def resize_array(nparray: npt.NDArray[F], length: int) -> npt.NDArray[F]:


def resize_preserving_order(
nparray: npt.NDArray[np.float_], length: int
) -> npt.NDArray[np.float_]:
nparray: npt.NDArray[np.float64], length: int
) -> npt.NDArray[np.float64]:
"""Extends/truncates nparray so that ``len(result) == length``.
The elements of nparray are duplicated to achieve the desired length
(favours earlier elements).
Expand Down
Loading