Use typing_extensions to import Self for python versions <3.11

This commit is contained in:
Grant Sanderson
2023-02-02 10:54:47 -08:00
parent c062592684
commit ab6a7df4af
14 changed files with 33 additions and 23 deletions

View File

@ -11,8 +11,8 @@ from manimlib.utils.rate_functions import smooth
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from typing import Callable, List, Iterable, Self
from manimlib.typing import ManimColor, Vect3
from typing import Callable, List, Iterable
from manimlib.typing import ManimColor, Vect3, Self
class AnimatedBoundary(VGroup):