mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Remove "None" output type for set_animating_status
This commit is contained in:
parent
7df12c68dc
commit
5c33c7e4a8
1 changed files with 1 additions and 1 deletions
|
@ -821,7 +821,7 @@ class Mobject(object):
|
|||
def is_changing(self) -> bool:
|
||||
return self._is_animating or self.has_updaters
|
||||
|
||||
def set_animating_status(self, is_animating: bool, recurse: bool = True) -> None:
|
||||
def set_animating_status(self, is_animating: bool, recurse: bool = True):
|
||||
for mob in (*self.get_family(recurse), *self.get_ancestors(extended=True)):
|
||||
mob._is_animating = is_animating
|
||||
return self
|
||||
|
|
Loading…
Add table
Reference in a new issue