aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/tic_tac_toe.py
diff options
context:
space:
mode:
authorGravatar vcokltfre <[email protected]>2021-04-19 21:17:10 +0100
committerGravatar vcokltfre <[email protected]>2021-04-19 21:17:10 +0100
commitf919e0cdb9cff71c187f55ea4447ef4934c5b9ab (patch)
tree17effd89262b2a4e7aed8c1cfea25fc61c05fed2 /bot/exts/evergreen/tic_tac_toe.py
parentchore(evergreen): make usage of . at sentence ends consistent (diff)
chore(evergreen): remove unneeded cog constructors
Diffstat (limited to 'bot/exts/evergreen/tic_tac_toe.py')
-rw-r--r--bot/exts/evergreen/tic_tac_toe.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py
index 15cc1ef3..1fef427a 100644
--- a/bot/exts/evergreen/tic_tac_toe.py
+++ b/bot/exts/evergreen/tic_tac_toe.py
@@ -246,8 +246,7 @@ def is_requester_free() -> t.Callable:
class TicTacToe(Cog):
"""TicTacToe cog contains tic-tac-toe game commands."""
- def __init__(self, bot: Bot):
- self.bot = bot
+ def __init__(self, _bot: Bot):
self.games: t.List[Game] = []
@guild_only()