aboutsummaryrefslogtreecommitdiff
path: root/src/match_up/controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/match_up/controller.py')
-rw-r--r--src/match_up/controller.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/match_up/controller.py b/src/match_up/controller.py
index 6188b3e..a21fced 100644
--- a/src/match_up/controller.py
+++ b/src/match_up/controller.py
@@ -2,7 +2,14 @@ from typing import Tuple
from operator import attrgetter
from dataclasses import dataclass, field
from match_up.utilities import sample_list, Timer
-from match_up.model import Team, Game, PlayerList, CourtList, MAX_LEVEL, PLAYER_PER_COURT
+from match_up.model import (
+ Team,
+ Game,
+ PlayerList,
+ CourtList,
+ MAX_LEVEL,
+ PLAYER_PER_COURT,
+)
def _create_placeholders(courts: dict, name: str) -> list[Game]: