aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/tic_tac_toe.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/exts/evergreen/tic_tac_toe.py')
-rw-r--r--bot/exts/evergreen/tic_tac_toe.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py
index ed4a6d52..bcc4c97e 100644
--- a/bot/exts/evergreen/tic_tac_toe.py
+++ b/bot/exts/evergreen/tic_tac_toe.py
@@ -195,7 +195,10 @@ class Game:
for _ in range(9):
if isinstance(self.current, Player):
- announce = await self.ctx.send(f"{self.current.user.mention}, it's your turn! React with an emoji to take your go.")
+ announce = await self.ctx.send(
+ f"{self.current.user.mention}, it's your turn! "
+ "React with an emoji to take your go."
+ )
timeout, pos = await self.current.get_move(self.board, board)
if isinstance(self.current, Player):
await announce.delete()