summaryrefslogtreecommitdiff
path: root/swiftstory/game.py
diff options
context:
space:
mode:
authorOlivier Gayot <olivier.gayot@sigexec.com>2021-12-29 20:14:09 +0100
committerOlivier Gayot <olivier.gayot@sigexec.com>2021-12-29 20:15:46 +0100
commitdacb8b4d73d01bf28444d306c812f650ca48d661 (patch)
tree7b96d3c37b1dd07953f66e6850366a071005ee80 /swiftstory/game.py
parent741f8234edde84dccefcbf5dc0ba3b70c0e016e2 (diff)
Remove trailing commas when defining enum so we don't define tuples
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 b2ec493..c0eb592 100644
--- a/swiftstory/game.py
+++ b/swiftstory/game.py
@@ -12,9 +12,9 @@ from swiftstory.status import error, success
class GameState(Enum):
""" Enumeration of the different game states. """
- WAITING_NEW_JUDGE = auto(),
- WAITING_COLLECTION = auto(),
- WAITING_DESIGNATION = auto(),
+ WAITING_NEW_JUDGE = auto()
+ WAITING_COLLECTION = auto()
+ WAITING_DESIGNATION = auto()
class Game: