Make handle_play_like_call a static method

This commit is contained in:
Grant Sanderson 2022-12-17 18:11:38 -08:00
parent bd537afe72
commit 810f2c67ab

View file

@ -511,7 +511,8 @@ class Scene(object):
kw["override_skip_animations"] = True
return self.get_time_progression(duration, **kw)
def handle_play_like_call(func):
@staticmethod
def handle_play_like_call(func: Callable):
@wraps(func)
def wrapper(self, *args, **kwargs):
if self.inside_embed: