Merge pull request #52 from kattni/sequence-fix

Fix differing argument.
This commit is contained in:
foamyguy 2020-06-18 19:30:12 -05:00 committed by GitHub
commit 56230fb658
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -317,6 +317,6 @@ class AnimateOnce(AnimationSequence):
super().on_cycle_complete()
self._running = False
def animate(self):
super().animate()
def animate(self, show=True):
super().animate(show)
return self._running