diff --git a/src/manim_plugintemplate/__init__.py b/src/manim_plugintemplate/__init__.py index 02cc6fc..eb3dd5e 100644 --- a/src/manim_plugintemplate/__init__.py +++ b/src/manim_plugintemplate/__init__.py @@ -1,3 +1,3 @@ __version__ = "0.1.3" -__all__= ['DotGrid'] +__all__ = ["DotGrid"] from .mobjects.dotgrid import * diff --git a/src/manim_plugintemplate/mobjects/__init__.py b/src/manim_plugintemplate/mobjects/__init__.py index e15fc02..8e94fb0 100644 --- a/src/manim_plugintemplate/mobjects/__init__.py +++ b/src/manim_plugintemplate/mobjects/__init__.py @@ -1 +1 @@ -from .dotgrid import * \ No newline at end of file +from .dotgrid import * diff --git a/src/manim_plugintemplate/mobjects/dotgrid.py b/src/manim_plugintemplate/mobjects/dotgrid.py index c47ba2b..f03ddd1 100644 --- a/src/manim_plugintemplate/mobjects/dotgrid.py +++ b/src/manim_plugintemplate/mobjects/dotgrid.py @@ -1,6 +1,8 @@ from manim import * __all__ = ["DotGrid"] + + class DotGrid(VMobject): def __init__(self): super().__init__()