diff options
author | 2021-09-10 07:47:12 -0400 | |
---|---|---|
committer | 2021-10-05 16:42:47 +0100 | |
commit | c87f4451206cfc1315fd32c33836f81a5e6ea300 (patch) | |
tree | 33f64420a17cf6cc804b464a9eac3d219cd3e446 /bot | |
parent | Move .json file to correct folder (diff) |
Test to capture all user_input
Diffstat (limited to 'bot')
-rw-r--r-- | bot/exts/utilities/color.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/color.py b/bot/exts/utilities/color.py index d7fff503..c4df3e10 100644 --- a/bot/exts/utilities/color.py +++ b/bot/exts/utilities/color.py @@ -32,7 +32,7 @@ class Color(commands.Cog): self.bot = bot @commands.command(aliases=["colour"]) - async def color(self, ctx: commands.Context, mode: str, user_color: str) -> None: + async def color(self, ctx: commands.Context, mode: str, *, user_color: str) -> None: """Send information on input color code or color name.""" logger.info(f"{mode = }") logger.info(f"{user_color = }") |