diff options
Diffstat (limited to 'swiftstory')
-rw-r--r-- | swiftstory/Game.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swiftstory/Game.py b/swiftstory/Game.py index 001ef23..cb02a1d 100644 --- a/swiftstory/Game.py +++ b/swiftstory/Game.py @@ -34,7 +34,7 @@ class Game: cards = [] try: - for i in range(10): + for _ in range(10): cards.append(self.board.pick_white_card()) except IndexError: return error('no enough white cards for player') |