mirror of
https://github.com/3b1b/manim.git
synced 2025-09-19 04:41:56 +00:00
Include types in universal imports
This commit is contained in:
parent
38db5ca9b9
commit
0115037c82
1 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,11 @@ import pkg_resources
|
|||
|
||||
__version__ = pkg_resources.get_distribution("manimgl").version
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from manimlib.typing import *
|
||||
|
||||
from manimlib.constants import *
|
||||
|
||||
from manimlib.window import *
|
||||
|
|
Loading…
Add table
Reference in a new issue