File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
- from manim import config , logger
4
-
5
- from .plugins_flags import get_plugins , list_plugins
3
+ from manim ._config import config , logger
4
+ from manim .plugins .plugins_flags import get_plugins , list_plugins
6
5
7
6
__all__ = [
8
7
"get_plugins" ,
Original file line number Diff line number Diff line change 10
10
else :
11
11
from importlib .metadata import entry_points
12
12
13
- from manim import console
13
+ from manim . _config import console
14
14
15
15
__all__ = ["list_plugins" ]
16
16
@@ -27,5 +27,5 @@ def list_plugins() -> None:
27
27
console .print ("[green bold]Plugins:[/green bold]" , justify = "left" )
28
28
29
29
plugins = get_plugins ()
30
- for plugin in plugins :
31
- console .print (f" • { plugin } " )
30
+ for plugin_name in plugins :
31
+ console .print (f" • { plugin_name } " )
Original file line number Diff line number Diff line change @@ -73,9 +73,6 @@ ignore_errors = True
73
73
[mypy-manim.mobject.geometry.*]
74
74
ignore_errors = False
75
75
76
- [mypy-manim.plugins.*]
77
- ignore_errors = True
78
-
79
76
[mypy-manim.renderer.*]
80
77
ignore_errors = True
81
78
You can’t perform that action at this time.
0 commit comments