Remove stray import

This commit is contained in:
Grant Sanderson 2022-12-17 17:29:39 -08:00
parent 0e558db122
commit 5b697b3782

View file

@ -19,7 +19,7 @@ from typing import TYPE_CHECKING
if TYPE_CHECKING: if TYPE_CHECKING:
from typing import Callable, Sequence, List, Tuple from typing import Callable, Sequence, List, Tuple
from manimlib.typing import ManimColor, Vect2, Vect3, Vect4, VectN, Matrix3x3, Vect3Array, Vect2Array from manimlib.typing import Vect2, Vect3, Vect4, VectN, Matrix3x3, Vect3Array, Vect2Array
def cross(v1: Vect3 | List[float], v2: Vect3 | List[float]) -> Vect3: def cross(v1: Vect3 | List[float], v2: Vect3 | List[float]) -> Vect3: