Skip to content

Commit

Permalink
Run black (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsonvillanueva authored Jan 31, 2021
1 parent 5157393 commit 787e513
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/manim_plugintemplate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.1.3"
__all__= ['DotGrid']
__all__ = ["DotGrid"]
from .mobjects.dotgrid import *
2 changes: 1 addition & 1 deletion src/manim_plugintemplate/mobjects/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .dotgrid import *
from .dotgrid import *
2 changes: 2 additions & 0 deletions src/manim_plugintemplate/mobjects/dotgrid.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from manim import *

__all__ = ["DotGrid"]


class DotGrid(VMobject):
def __init__(self):
super().__init__()
Expand Down

0 comments on commit 787e513

Please sign in to comment.