Add white space after assert statements

This commit is contained in:
Grant Sanderson
2024-08-16 12:15:55 -05:00
parent 3f15715ff1
commit 902a4f264e
15 changed files with 30 additions and 30 deletions

View File

@ -133,7 +133,7 @@ class Succession(AnimationGroup):
super().__init__(*animations, lag_ratio=lag_ratio, **kwargs)
def begin(self) -> None:
assert(len(self.animations) > 0)
assert len(self.animations) > 0
self.active_animation = self.animations[0]
self.active_animation.begin()