aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-01-17 08:32:00 +0200
committerGravatar GitHub <[email protected]>2021-01-17 08:32:00 +0200
commit674147c2858dfb6e10470d7b4c044f46615950e3 (patch)
tree5bc6fab30127ec68734c4cafae8f78a14aecfe8d
parentMerge branch 'master' into tic-tac-toe (diff)
Remove unnecessary line split
Co-authored-by: Xithrius <[email protected]>
-rw-r--r--bot/exts/evergreen/tic_tac_toe.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py
index bcc4c97e..daa646a8 100644
--- a/bot/exts/evergreen/tic_tac_toe.py
+++ b/bot/exts/evergreen/tic_tac_toe.py
@@ -314,9 +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())