From c60e97ebf9775883b5b5ca261e9723e848a65190 Mon Sep 17 00:00:00 2001 From: BillyLikesHacking <86190295+BillyLikesHacking@users.noreply.github.com> Date: Fri, 22 Oct 2021 20:58:19 +0800 Subject: [PATCH] Update vectorized_mobject.py --- manimlib/mobject/types/vectorized_mobject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/mobject/types/vectorized_mobject.py b/manimlib/mobject/types/vectorized_mobject.py index 1037cc25..257c6de1 100644 --- a/manimlib/mobject/types/vectorized_mobject.py +++ b/manimlib/mobject/types/vectorized_mobject.py @@ -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)