diff --git a/algobattle/cli.py b/algobattle/cli.py index 4143ad63..10a0a1ae 100644 --- a/algobattle/cli.py +++ b/algobattle/cli.py @@ -603,7 +603,7 @@ def __init__(self, teams: Iterable[str]) -> None: self.teams = { team: self.team_progress.add_task(team, start=False, total=2, status="", name=team) for team in teams } - super().__init__(self.overall_progress, self.team_progress) + super().__init__(Padding(self.overall_progress, (0, 0, 1, 0)), self.team_progress) class FightPanel(Panel):