diff options
| -rw-r--r-- | src/match_up/model.py | 5 |
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(): |
