Remove kwargs from begin_animations

This commit is contained in:
Grant Sanderson 2019-02-08 15:26:30 -08:00
parent 3d6092c06c
commit a2d99741f3

View file

@ -507,7 +507,7 @@ class Scene(Container):
animations = self.compile_play_args_to_animation_list(
*args, **kwargs
)
self.begin_animations(animations, **kwargs)
self.begin_animations(animations)
self.progress_through_animations(animations)
self.finish_animations(animations)