diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-04-05 14:08:01 +0200 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-04-05 14:08:01 +0200 |
| commit | f48223b3d93e54cb9ed3f2174e9b6075719128bf (patch) | |
| tree | 31bbd308959958c1917e0e9d122ba09695ff9764 /src/match_up/model.py | |
| parent | 6dcdffeea79c76436fccaad5b382af709af8c121 (diff) | |
Some progress on the dash application
Diffstat (limited to 'src/match_up/model.py')
| -rw-r--r-- | src/match_up/model.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/match_up/model.py b/src/match_up/model.py index 181b698..3a9990b 100644 --- a/src/match_up/model.py +++ b/src/match_up/model.py @@ -2,6 +2,9 @@ from pathlib import PurePath from tinydb import TinyDB, where from dataclasses import dataclass +MIN_SKILL = 1 +MAX_SKILL = 10 + class PlaySession: def __init__(self, database_location: PurePath): |
