summaryrefslogtreecommitdiff
path: root/src/match_up/controller.py
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-11-09 18:52:45 +0100
committerKaran Jayachandra <mail@karanjayachandra.com>2024-11-09 18:52:45 +0100
commitaa73a7618075b54940d32b7b1e0e751b301bee4d (patch)
treeebef0e4eef32dbfb30f1f5d8e7c8e0d159eef489 /src/match_up/controller.py
parent14df28d5b8d3d9d80f24c532e1c096f8ac997e5b (diff)
Formatted the package with black
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]: