mirror of
https://github.com/3b1b/manim.git
synced 2025-09-19 04:41:56 +00:00
Update output type for make_even
This commit is contained in:
parent
3f024175d4
commit
fd20ead11b
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ def resize_with_interpolation(nparray: np.ndarray, length: int) -> np.ndarray:
|
|||
def make_even(
|
||||
iterable_1: Sequence[T],
|
||||
iterable_2: Sequence[S]
|
||||
) -> tuple[list[T], list[S]]:
|
||||
) -> tuple[Sequence[T], Sequence[S]]:
|
||||
len1 = len(iterable_1)
|
||||
len2 = len(iterable_2)
|
||||
if len1 == len2:
|
||||
|
|
Loading…
Add table
Reference in a new issue