diff options
| author | 2021-05-15 12:53:00 -0400 | |
|---|---|---|
| committer | 2021-05-15 12:53:00 -0400 | |
| commit | 55d472a97efea392b4eb2b198ffa6f5f5026072d (patch) | |
| tree | d906bac511932bc33adba099efbcf9904c46dac3 /bot/exts/easter/egg_decorating.py | |
| parent | chore: Update myvalenstate.py (diff) | |
chore: Make all aliases in commands tuples
Diffstat (limited to 'bot/exts/easter/egg_decorating.py')
| -rw-r--r-- | bot/exts/easter/egg_decorating.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/easter/egg_decorating.py b/bot/exts/easter/egg_decorating.py index 7448f702..d4b27b20 100644 --- a/bot/exts/easter/egg_decorating.py +++ b/bot/exts/easter/egg_decorating.py @@ -41,7 +41,7 @@ class EggDecorating(commands.Cog):              return int(XKCD_COLOURS[colour], 16)          return None -    @commands.command(aliases=["decorateegg"]) +    @commands.command(aliases=("decorateegg",))      async def eggdecorate(          self, ctx: commands.Context, *colours: Union[discord.Colour, str]      ) -> Union[Image.Image, discord.Message]:  |