From b1866c3a4429aac915261027ea198e14361f2517 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Sat, 12 Sep 2020 23:47:27 +0200 Subject: Fix accidental use of tuple in enumeration Signed-off-by: Olivier Gayot --- swiftstory/Game.py | 6 +++--- 1 file 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)] -- cgit v1.2.3