From dacb8b4d73d01bf28444d306c812f650ca48d661 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Wed, 29 Dec 2021 20:14:09 +0100 Subject: Remove trailing commas when defining enum so we don't define tuples 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 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: -- cgit v1.2.3