Add space after assert

This commit is contained in:
Grant Sanderson 2024-02-03 19:11:18 -06:00
parent dfa96c2047
commit 7009f0f53e

View file

@ -1423,7 +1423,7 @@ class VGroup(VMobject):
self.uniforms.update(vmobjects[0].uniforms)
def __add__(self, other: VMobject) -> Self:
assert(isinstance(other, VMobject))
assert isinstance(other, VMobject)
return self.add(other)