aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar vivax3794 <[email protected]>2019-08-13 22:26:25 +0200
committerGravatar GitHub <[email protected]>2019-08-13 22:26:25 +0200
commit95bea08cb90975962ceb25af7180334d25254999 (patch)
treee693a082b35816453c893e34db0fa8ef7c420829
parentMerge remote-tracking branch 'origin/minesweeper' into minesweeper (diff)
Apply suggestions from code review
Co-Authored-By: Thomas Petersson <[email protected]>
-rw-r--r--bot/seasons/evergreen/minesweeper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/minesweeper.py b/bot/seasons/evergreen/minesweeper.py
index e005bbb9..b742512d 100644
--- a/bot/seasons/evergreen/minesweeper.py
+++ b/bot/seasons/evergreen/minesweeper.py
@@ -239,7 +239,7 @@ class Minesweeper(commands.Cog):
board: GameBoard = game.board
for x, y in coordinates:
- # reveal_one returns True if the revealed cell is a bomb or the player won., ending the game
+ # reveal_one returns True if the revealed cell is a bomb or the player won, ending the game
if await self.reveal_one(ctx, revealed, board, x, y):
await self.update_boards(ctx)
del self.games[ctx.author.id]