diff options
-rw-r--r-- | arthur/bot.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arthur/bot.py b/arthur/bot.py index c7686cc..d9f2f60 100644 --- a/arthur/bot.py +++ b/arthur/bot.py @@ -16,7 +16,10 @@ class KingArthur(Bot): """Base bot class for King Arthur.""" def __init__(self, *args: list[Any], **kwargs: dict[str, Any]) -> None: - config = {"command_prefix": commands.when_mentioned_or(CONFIG.prefix), "case_insensitive": True} + config = { + "command_prefix": commands.when_mentioned_or(CONFIG.prefix), + "case_insensitive": True, + } kwargs.update(config) |