aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/tic_tac_toe.py
diff options
context:
space:
mode:
authorGravatar ToxicKidz <[email protected]>2021-05-04 13:15:55 -0400
committerGravatar ToxicKidz <[email protected]>2021-05-04 13:15:55 -0400
commitc051abf49ce5bb82d127c8ddfad7ece431bb028f (patch)
tree02d1795959d12529bf4d616752c98268f7dd9ae2 /bot/exts/evergreen/tic_tac_toe.py
parentMerge branch 'spring-cleanup' of https://github.com/ToxicKidz/sir-lancebot in... (diff)
chore: Apply suggested changes
Diffstat (limited to 'bot/exts/evergreen/tic_tac_toe.py')
-rw-r--r--bot/exts/evergreen/tic_tac_toe.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py
index 7b387c0a..bd5e0102 100644
--- a/bot/exts/evergreen/tic_tac_toe.py
+++ b/bot/exts/evergreen/tic_tac_toe.py
@@ -246,7 +246,7 @@ def is_requester_free() -> t.Callable:
class TicTacToe(Cog):
"""TicTacToe cog contains tic-tac-toe game commands."""
- def __init__(self, _bot: Bot):
+ def __init__(self):
self.games: t.List[Game] = []
@guild_only()
@@ -323,4 +323,4 @@ class TicTacToe(Cog):
def setup(bot: Bot) -> None:
"""Load the TicTacToe cog."""
- bot.add_cog(TicTacToe(bot))
+ bot.add_cog(TicTacToe())