From 4f6232fb7d1979aa3138cecbb5cf66e15e65f1ab Mon Sep 17 00:00:00 2001 From: bobloy Date: Thu, 6 Aug 2020 13:39:51 -0400 Subject: [PATCH] Fix this send_help mistake --- ccrole/ccrole.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccrole/ccrole.py b/ccrole/ccrole.py index 9be63f2..4a6fd9d 100644 --- a/ccrole/ccrole.py +++ b/ccrole/ccrole.py @@ -29,7 +29,7 @@ class CCRole(commands.Cog): Highly customizable custom commands with role management.""" if not ctx.invoked_subcommand: - await ctx.send_help() + pass @ccrole.command(name="add") @checks.mod_or_permissions(administrator=True)