diff options
Diffstat (limited to 'swiftstory/Game.py')
-rw-r--r-- | swiftstory/Game.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/swiftstory/Game.py b/swiftstory/Game.py index bcf9b64..6ba4e57 100644 --- a/swiftstory/Game.py +++ b/swiftstory/Game.py @@ -6,9 +6,9 @@ from swiftstory.Status import error, success class Game: - WAITING_NEW_JUDGE = 0, - WAITING_COLLECTION = 1, - WAITING_DESIGNATION = 2, + WAITING_NEW_JUDGE = 0 + WAITING_COLLECTION = 1 + WAITING_DESIGNATION = 2 def __init__(self, white_desc, black_desc): white_pick = [i for i in enumerate(white_desc)] |