summaryrefslogtreecommitdiff
path: root/swiftstory/game.py
diff options
context:
space:
mode:
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: