diff options
author | 2021-05-03 12:28:47 -0400 | |
---|---|---|
committer | 2021-05-03 12:28:47 -0400 | |
commit | a1aa1a8ff0e9970cbb492282d10b6cb73aa17b28 (patch) | |
tree | 81dc12f43f615e77bb4aa6ad2d445b1719186aa3 | |
parent | Merge branch 'spring-cleanup' of https://github.com/ToxicKidz/sir-lancebot in... (diff) |
fix: Don't pass bot to __init__
-rw-r--r-- | bot/exts/pride/drag_queen_name.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/pride/drag_queen_name.py b/bot/exts/pride/drag_queen_name.py index 32ead1bc..9839f089 100644 --- a/bot/exts/pride/drag_queen_name.py +++ b/bot/exts/pride/drag_queen_name.py @@ -30,4 +30,4 @@ class DragNames(commands.Cog): def setup(bot: Bot) -> None: """Load the Drag Queen Cog.""" - bot.add_cog(DragNames(bot)) + bot.add_cog(DragNames()) |