aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-01-17 08:38:20 +0200
committerGravatar GitHub <[email protected]>2021-01-17 08:38:20 +0200
commit1d6912caf4bf3cb0604933ec66fa13294fa5d68a (patch)
tree4923733e247da26b07f02c6a49432e179258f6c4
parentRemove unnecessary line split (diff)
Fix indention
-rw-r--r--bot/exts/evergreen/tic_tac_toe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py
index daa646a8..22fff102 100644
--- a/bot/exts/evergreen/tic_tac_toe.py
+++ b/bot/exts/evergreen/tic_tac_toe.py
@@ -314,7 +314,7 @@ class TicTacToe(Cog):
await ctx.send("Game don't exist.")
return
game = self.games[game_id - 1]
- await ctx.send(f"{game.winner} :trophy: vs {game.loser}")
+ await ctx.send(f"{game.winner} :trophy: vs {game.loser}")
await ctx.send(game.format_board())