aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/connect_four.py
diff options
context:
space:
mode:
authorGravatar ToxicKidz <[email protected]>2021-05-07 13:41:23 -0400
committerGravatar ToxicKidz <[email protected]>2021-05-07 13:41:23 -0400
commitd5f01153aac59cfbc043d894ebf6e1173c1efb48 (patch)
treed129b953b2882ce90603a3db6f442a14e98af5fd /bot/exts/evergreen/connect_four.py
parentfix: Resolve Merge Conflicts (diff)
chore: Reformat the code to follow the style guild
Diffstat (limited to 'bot/exts/evergreen/connect_four.py')
-rw-r--r--bot/exts/evergreen/connect_four.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bot/exts/evergreen/connect_four.py b/bot/exts/evergreen/connect_four.py
index 929a15d8..dc365a70 100644
--- a/bot/exts/evergreen/connect_four.py
+++ b/bot/exts/evergreen/connect_four.py
@@ -277,8 +277,10 @@ class ConnectFour(commands.Cog):
return False
if not self.min_board_size <= board_size <= self.max_board_size:
- await ctx.send(f"{board_size} is not a valid board size. A valid board size is "
- f"between `{self.min_board_size}` and `{self.max_board_size}`.")
+ await ctx.send(
+ f"{board_size} is not a valid board size. A valid board size is "
+ f"between `{self.min_board_size}` and `{self.max_board_size}`."
+ )
return False
return True