diff options
author | 2021-11-10 19:20:56 -0500 | |
---|---|---|
committer | 2021-11-10 19:20:56 -0500 | |
commit | 231ad0e58ee7b2eb58f48833abe469bf61582bdc (patch) | |
tree | 398c761a344c5c21b6eba1f8058ce74e7fe7f695 /bot/exts/utilities/colour.py | |
parent | cleanup: finalize reviews requested changes (diff) |
cleanup: change main command docstring to be more clear
Diffstat (limited to 'bot/exts/utilities/colour.py')
-rw-r--r-- | bot/exts/utilities/colour.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bot/exts/utilities/colour.py b/bot/exts/utilities/colour.py index 9f7bedb5..b233fc1e 100644 --- a/bot/exts/utilities/colour.py +++ b/bot/exts/utilities/colour.py @@ -77,7 +77,11 @@ class Colour(commands.Cog): @commands.group(aliases=("color",), invoke_without_command=True) async def colour(self, ctx: commands.Context, *, color_input: Optional[str] = None) -> None: - """User initiated command to create an embed that displays colour information.""" + """ + Create an embed that displays colour information. + + If no subcommand is called, a randomly selected colour will be selected and shown. + """ if color_input is None: await self.random(ctx) return |