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/evergreen/wonder_twins.py | |
parent | chore: Update myvalenstate.py (diff) |
chore: Make all aliases in commands tuples
Diffstat (limited to 'bot/exts/evergreen/wonder_twins.py')
-rw-r--r-- | bot/exts/evergreen/wonder_twins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/wonder_twins.py b/bot/exts/evergreen/wonder_twins.py index 437d69f1..40edf785 100644 --- a/bot/exts/evergreen/wonder_twins.py +++ b/bot/exts/evergreen/wonder_twins.py @@ -38,7 +38,7 @@ class WonderTwins(Cog): object_name = self.append_onto(adjective, object_name) return f"{object_name} of {water_type}" - @command(name="formof", aliases=["wondertwins", "wondertwin", "fo"]) + @command(name="formof", aliases=("wondertwins", "wondertwin", "fo")) async def form_of(self, ctx: Context) -> None: """Command to send a Wonder Twins inspired phrase to the user invoking the command.""" await ctx.send(f"Form of {self.format_phrase()}!") |