summaryrefslogtreecommitdiff
path: root/swiftstory/Game.py
diff options
context:
space:
mode:
authorOlivier Gayot <olivier.gayot@sigexec.com>2020-09-12 23:47:27 +0200
committerOlivier Gayot <olivier.gayot@sigexec.com>2020-09-12 23:47:27 +0200
commitb1866c3a4429aac915261027ea198e14361f2517 (patch)
tree6bf54d9ca0056b2090e396da5f0fae5ade6c251a /swiftstory/Game.py
parent8a46ea8ef3df521a518d408aa70ec17fbd0370b5 (diff)
Fix accidental use of tuple in enumeration
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory/Game.py')
-rw-r--r--swiftstory/Game.py6
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)]