Skip to content

Commit 658fa0e

Browse files
committed
Add self to __class__
1 parent 7e8bac4 commit 658fa0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manim/mobject/types/vectorized_mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ def __init__(self, *vmobjects, **kwargs):
878878

879879
def __repr__(self):
880880
return (
881-
__class__.__name__
881+
self.__class__.__name__
882882
+ "("
883883
+ ", ".join(str(mob) for mob in self.submobjects)
884884
+ ")"

0 commit comments

Comments
 (0)