Skip to content

Commit dd327a3

Browse files
Fixed Animate Type-hint (#3543)
1 parent 8ea8f25 commit dd327a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manim/mobject/mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def construct(self):
238238
cls.__init__ = cls._original__init__
239239

240240
@property
241-
def animate(self) -> _AnimationBuilder | T:
241+
def animate(self: T) -> _AnimationBuilder | T:
242242
"""Used to animate the application of any method of :code:`self`.
243243
244244
Any method called on :code:`animate` is converted to an animation of applying

0 commit comments

Comments
 (0)