diff options
Diffstat (limited to 'src/sliceitoff/display/display.py')
-rw-r--r-- | src/sliceitoff/display/display.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sliceitoff/display/display.py b/src/sliceitoff/display/display.py index c2a3e44..2febdc2 100644 --- a/src/sliceitoff/display/display.py +++ b/src/sliceitoff/display/display.py @@ -30,8 +30,7 @@ class Display(): self.screen.fill(Stats.bgcolor, rect=Scaling.active) #(g.draw(self.screen) for g in groups if g) for group in groups: - if group: - group.draw(self.screen) + group.draw(self.screen) self.screen.fill(Stats.bordercolor, rect=Scaling.borders[0]) self.screen.fill(Stats.bordercolor, rect=Scaling.borders[1]) pygame.display.flip() |