summaryrefslogtreecommitdiff
path: root/src/match_up/model.py
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-11-13 00:16:53 +0100
committerKaran Jayachandra <mail@karanjayachandra.com>2024-11-13 00:16:53 +0100
commit6b791ee4d42e63a8125ec3f4f038128d2e88a079 (patch)
treebca362d10621a541bad0d820fa0f78beebab3a46 /src/match_up/model.py
parentf6356260f456809d5b41065f477be5720b2eafc6 (diff)
Added some basic errors for unfinished stuff
Diffstat (limited to 'src/match_up/model.py')
-rw-r--r--src/match_up/model.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/match_up/model.py b/src/match_up/model.py
index 5139de8..2bd98fc 100644
--- a/src/match_up/model.py
+++ b/src/match_up/model.py
@@ -194,7 +194,10 @@ class PlayerList:
return active_players + low_guests + mid_guests + high_guests
def increment_game_count(self, player_ids: list[int]):
- return 0
+ return NotImplementedError()
+
+ def reset_game_count(self):
+ return NotImplementedError()
def _init_database_from_csv(self, data: DataFrame) -> None:
for _, entry in data.iterrows():