diff --git a/renderers/main.py b/renderers/main.py index bf7eb5ac..54fc0e64 100644 --- a/renderers/main.py +++ b/renderers/main.py @@ -232,11 +232,12 @@ def __draw_standings(self, cond: Callable[[], bool]): self.canvas = self.matrix.SwapOnVSync(self.canvas) - if self.data.standings.is_postseason() and update % 20 == 0: - if self.standings_league == "NL": - self.standings_league = "AL" - else: - self.standings_league = "NL" + if self.data.standings.is_postseason(): + if update % 20 == 0: + if self.standings_league == "NL": + self.standings_league = "AL" + else: + self.standings_league = "NL" elif self.canvas.width == 32 and update % 5 == 0: if self.standings_stat == "w": self.standings_stat = "l"