aboutsummaryrefslogtreecommitdiff
path: root/controller.py
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-17 10:38:41 +0200
committerKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-17 10:38:41 +0200
commit8f1438964e1a336c44609cd4cc4c6aef61137011 (patch)
tree584049943ca2d97453d61d7f1a09863de0ad7881 /controller.py
parentfb6b013b821e2011a04d6ba85813a6a947c14239 (diff)
Added content to the README and reordered the code
Diffstat (limited to 'controller.py')
-rw-r--r--controller.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller.py b/controller.py
index 2e09e9f..e6dc827 100644
--- a/controller.py
+++ b/controller.py
@@ -1,8 +1,8 @@
from typing import Tuple
from operator import attrgetter
from dataclasses import dataclass
-from utilities import sample_list
-from model import Team, Game, PlayerList, CourtList, Timer, MAX_LEVEL, PLAYER_PER_COURT
+from utilities import sample_list, Timer
+from model import Team, Game, PlayerList, CourtList, MAX_LEVEL, PLAYER_PER_COURT
def _create_placeholders(courts: dict, name: str) -> list[Game]: