Skip to content

Commit ad71d54

Browse files
committed
add type hint to use_override parameter
1 parent 642ddfd commit ad71d54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manim/animation/animation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def __init__(
141141
introducer: bool = False,
142142
*,
143143
_on_finish: Callable[[], None] = lambda _: None,
144-
use_override=True, # included here to avoid TypeError if passed from a subclass's constructor
144+
use_override: bool = True, # included here to avoid TypeError if passed from a subclass's constructor
145145
) -> None:
146146
self._typecheck_input(mobject)
147147
self.run_time: float = run_time

0 commit comments

Comments
 (0)