Skip to content

Commit

Permalink
nicer padding during match build
Browse files Browse the repository at this point in the history
  • Loading branch information
ImogenBits committed Sep 19, 2023
1 parent 9f85f61 commit b8adad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion algobattle/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit b8adad3

Please sign in to comment.