Better error handling
All checks were successful
docker-image / docker (push) Successful in 10m14s

This commit is contained in:
Stefan Bethke 2025-06-15 19:14:34 +02:00
commit ca540aff99

View file

@ -151,4 +151,7 @@ class BubaAnimator:
a.run()
def add(self, animation, *args, **kwargs):
try:
self.animations.append(animation(self.buba, *args, **kwargs))
except Exception as e:
self.log.error(f"Failed to add animation: {e}")