diff options
author | 2020-10-03 21:28:15 +0200 | |
---|---|---|
committer | 2020-10-03 21:28:15 +0200 | |
commit | a0f42eba424fe3d119f5af2632822b38b78b5bd2 (patch) | |
tree | 15aeded5a51bbf6456dafc37cf0971d747eebe0c | |
parent | Merge branch 'master' into discordpy-15 (diff) |
Add trailing comma to intents
-rw-r--r-- | bot/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/__main__.py b/bot/__main__.py index 133c96302..da042a5ed 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -62,7 +62,7 @@ bot = Bot( case_insensitive=True, max_messages=10_000, allowed_mentions=discord.AllowedMentions(everyone=False, roles=allowed_roles), - intents=intents + intents=intents, ) # Load extensions. |