diff options
author | 2021-01-16 20:48:27 +0200 | |
---|---|---|
committer | 2021-01-16 20:48:27 +0200 | |
commit | b5490070a481d09a82e682be0b822baab4fc373e (patch) | |
tree | e20fea5fa27feb3ff8226d7ff73a085d794a67ba /bot/exts/evergreen/tic_tac_toe.py | |
parent | More grammar fixes (diff) |
Fix too long line
Diffstat (limited to 'bot/exts/evergreen/tic_tac_toe.py')
-rw-r--r-- | bot/exts/evergreen/tic_tac_toe.py | 5 |
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() |