diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-09-12 23:48:57 +0200 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2020-09-12 23:48:57 +0200 |
commit | c6f5c844abfc2461e4b19ee966808c475eac1741 (patch) | |
tree | a538e5480caf43f2ebd4bdee8bcd5347e7f8ad51 /swiftstory/Game.py | |
parent | 893ba922ca9215f95d843235b6b402a0345ea432 (diff) |
Use _ name for unused counter
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'swiftstory/Game.py')
-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') |