From 65d352d0abd307a5cf134a0995f57937fb29d268 Mon Sep 17 00:00:00 2001 From: Jason Grace <110117391+JasonGrace2282@users.noreply.github.com> Date: Thu, 1 Feb 2024 18:31:53 -0500 Subject: [PATCH] Fix typehint (#3592) --- manim/typing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manim/typing.py b/manim/typing.py index 6f16bad905..9d8bd7a4c5 100644 --- a/manim/typing.py +++ b/manim/typing.py @@ -257,9 +257,9 @@ """ InternalPoint2D_Array: TypeAlias = npt.NDArray[PointDType] -"""``shape: (N, 3)`` +"""``shape: (N, 2)`` -An array of `Point2D` objects: ``[[float, float], ...]``. +An array of `InternalPoint2D` objects: ``[[float, float], ...]``. .. note:: This type alias is mostly made available for internal use, and