summaryrefslogtreecommitdiff
path: root/src/match_up/controller.py
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-10-25 18:24:13 +0200
committerKaran Jayachandra <mail@karanjayachandra.com>2024-10-25 18:24:13 +0200
commit2a390e99e03fe538169aa6d7c23669eaa5ece467 (patch)
tree211a184bfc362fbc3f7186789eb65391b7f1fb87 /src/match_up/controller.py
parent70b7b2d950b62939034eaa34c605beb8159edd51 (diff)
Added the requirements on the static files
Diffstat (limited to 'src/match_up/controller.py')
-rw-r--r--src/match_up/controller.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/match_up/controller.py b/src/match_up/controller.py
index e6dc827..2f8bfaf 100644
--- a/src/match_up/controller.py
+++ b/src/match_up/controller.py
@@ -1,8 +1,8 @@
from typing import Tuple
from operator import attrgetter
from dataclasses import dataclass
-from utilities import sample_list, Timer
-from model import Team, Game, PlayerList, CourtList, MAX_LEVEL, PLAYER_PER_COURT
+from match_up.utilities import sample_list, Timer
+from match_up.model import Team, Game, PlayerList, CourtList, MAX_LEVEL, PLAYER_PER_COURT
def _create_placeholders(courts: dict, name: str) -> list[Game]: