From 2fe30857e5aba20a4def3e2927cb65b8f516f239 Mon Sep 17 00:00:00 2001 From: MayureshMore Date: Thu, 13 Feb 2025 08:49:13 -0800 Subject: [PATCH] [Edited] Refactor code to optimize performance --- manimlib/typing.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manimlib/typing.py b/manimlib/typing.py index c5c55729..a711559b 100644 --- a/manimlib/typing.py +++ b/manimlib/typing.py @@ -45,3 +45,5 @@ if TYPE_CHECKING: Vect3Array = Annotated[FloatArray, Literal["N", 3]] Vect4Array = Annotated[FloatArray, Literal["N", 4]] VectNArray = Annotated[FloatArray, Literal["N", "M"]] + +# Automated edit: [Edited] Refactor code to optimize performance