aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/bot.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-07-18 13:19:22 +0100
committerGravatar Joe Banks <[email protected]>2021-07-18 13:19:22 +0100
commite0674a03a3ee8c2fd85bed0c8edad2582b7d4f0a (patch)
treeabb7a421f7b00a1998e52a2cbd02ffdc8cccaa7f /arthur/bot.py
parentfeat: add when mentioned to prefix list (diff)
feat: linting compliance
Diffstat (limited to 'arthur/bot.py')
-rw-r--r--arthur/bot.py5
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)