mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
Fix number line runtime typing import
This commit is contained in:
parent
d0b27b3d8f
commit
d259c596cf
1 changed files with 2 additions and 2 deletions
|
|
@ -9,10 +9,10 @@ __all__ = ["NumberLine", "UnitInterval"]
|
|||
|
||||
|
||||
from collections.abc import Iterable, Sequence
|
||||
from typing import TYPE_CHECKING, cast
|
||||
from typing import TYPE_CHECKING, Any, cast
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from typing import Any, Self
|
||||
from typing import Self
|
||||
|
||||
from manim.mobject.geometry.tips import ArrowTip
|
||||
from manim.typing import ManimTextLabel, Point3D, Point3DLike, Vector3D
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue