mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
Add space after assert
This commit is contained in:
parent
dfa96c2047
commit
7009f0f53e
1 changed files with 1 additions and 1 deletions
|
@ -1423,7 +1423,7 @@ class VGroup(VMobject):
|
||||||
self.uniforms.update(vmobjects[0].uniforms)
|
self.uniforms.update(vmobjects[0].uniforms)
|
||||||
|
|
||||||
def __add__(self, other: VMobject) -> Self:
|
def __add__(self, other: VMobject) -> Self:
|
||||||
assert(isinstance(other, VMobject))
|
assert isinstance(other, VMobject)
|
||||||
return self.add(other)
|
return self.add(other)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue