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/wikipedia.py | |
parent | chore: Update myvalenstate.py (diff) |
chore: Make all aliases in commands tuples
Diffstat (limited to 'bot/exts/evergreen/wikipedia.py')
-rw-r--r-- | bot/exts/evergreen/wikipedia.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/wikipedia.py b/bot/exts/evergreen/wikipedia.py index fa21b916..83937438 100644 --- a/bot/exts/evergreen/wikipedia.py +++ b/bot/exts/evergreen/wikipedia.py @@ -72,7 +72,7 @@ class WikipediaSearch(commands.Cog): return @commands.cooldown(1, 10, commands.BucketType.user) - @commands.command(name="wikipedia", aliases=["wiki"]) + @commands.command(name="wikipedia", aliases=("wiki",)) async def wikipedia_search_command(self, ctx: commands.Context, *, search: str) -> None: """Sends paginated top 10 results of Wikipedia search..""" contents = await self.wiki_request(ctx.channel, search) |