diff options
-rw-r--r-- | arthur/bot.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arthur/bot.py b/arthur/bot.py index fc97846..9ce39ba 100644 --- a/arthur/bot.py +++ b/arthur/bot.py @@ -48,9 +48,10 @@ class KingArthur(BotBase): await self.load_extensions(exts, sync_app_commands=False) - logger.info("Loading <red>jishaku</red>") - await self.load_extension("jishaku") - logger.info("Loaded <red>jishaku</red>") + # jishaku doesn't support 3.11 yet. + # logger.info("Loading <red>jishaku</red>") + # await self.load_extension("jishaku") + # logger.info("Loaded <red>jishaku</red>") async def is_owner(self, user: User | Member) -> bool: """Check if the invoker is a bot owner.""" |