diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-05-15 00:32:45 +0200 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-05-15 02:47:20 +0200 |
commit | d01091afabaeb2665fa8773ccd37cc437230c9eb (patch) | |
tree | f9a77b343b43172beda9de61c40e2b80dc193d92 /swiftstory/Game.py | |
parent | 638af2c54513a928e6fe82bcb2932c09da6931b2 (diff) |
Add cosmetic changes
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory/Game.py')
-rw-r--r-- | swiftstory/Game.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/swiftstory/Game.py b/swiftstory/Game.py index 7e7da09..9885182 100644 --- a/swiftstory/Game.py +++ b/swiftstory/Game.py @@ -1,16 +1,15 @@ +import json + from swiftstory.Player import Player from swiftstory.Board import Board - from swiftstory.Status import error, success -import json -class Game(): +class Game: WAITING_NEW_JUDGE = 0, WAITING_COLLECTION = 1, WAITING_DESIGNATION = 2, - def __init__(self, white_desc, black_desc): self.white_desc = white_desc self.black_desc = black_desc |