Update vectorized_mobject.py

This commit is contained in:
BillyLikesHacking 2021-10-22 20:58:19 +08:00 committed by GitHub
parent b1ed16e81a
commit c60e97ebf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,7 +76,7 @@ class VMobject(Mobject):
super().__init__(**kwargs)
self.refresh_unit_normal()
def __add__(self, other : 'VMobject') -> VGroup:
def __add__(self, other : 'VMobject') -> 'VGroup':
assert(isinstance(other, VMobject))
return VGroup(self, other)