Small addition for clarity

This commit is contained in:
Grant Sanderson 2019-03-19 17:31:03 -07:00
parent abccb4aa8b
commit ecb9184e1a

View file

@ -503,7 +503,7 @@ class Scene(Container):
self.update_mobjects(dt)
self.update_frame()
self.add_frames(self.get_frame())
if stop_condition and stop_condition():
if stop_condition is not None and stop_condition():
time_progression.close()
break
elif self.skip_animations: