diff options
author | 2024-02-02 16:12:08 +0000 | |
---|---|---|
committer | 2024-02-02 16:12:08 +0000 | |
commit | 5fd87154cbf326068b181f366286a635a7eaa119 (patch) | |
tree | 709446f42d8981e83bca8b17f4fda280d477c7e2 /arthur/bot.py | |
parent | Add ruff isort configuration (diff) |
Enable all ruff rules
Diffstat (limited to 'arthur/bot.py')
-rw-r--r-- | arthur/bot.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arthur/bot.py b/arthur/bot.py index 4d56df2..8db850d 100644 --- a/arthur/bot.py +++ b/arthur/bot.py @@ -49,10 +49,9 @@ class KingArthur(BotBase): await self.load_extensions(exts, sync_app_commands=False) - # jishaku doesn't support 3.11 yet. - # logger.info("Loading <red>jishaku</red>") - # await self.load_extension("jishaku") - # logger.info("Loaded <red>jishaku</red>") + 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.""" |