diff options
| -rw-r--r-- | bot/cogs/security.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/security.py b/bot/cogs/security.py index c7fa4a686..91029f2cd 100644 --- a/bot/cogs/security.py +++ b/bot/cogs/security.py @@ -13,7 +13,7 @@ class Security: self.bot = bot self.bot.check(self.check_not_bot) - async def check_not_bot(self, ctx: Context): + def check_not_bot(self, ctx: Context): return not ctx.author.bot |