diff --git a/techsupport_bot/commands/google.py b/techsupport_bot/commands/google.py index cbd3f2f4e..5bd8eb2d8 100644 --- a/techsupport_bot/commands/google.py +++ b/techsupport_bot/commands/google.py @@ -58,7 +58,7 @@ async def get_items(self, url, data): return response.get("items") @commands.group( - aliases=["g"], + aliases=["g", "G"], brief="Executes a Google command", description="Executes a Google command", ) @@ -71,7 +71,7 @@ async def google(self, ctx): @auxiliary.with_typing @commands.guild_only() @google.command( - aliases=["s"], + aliases=["s", "S"], brief="Searches Google", description="Returns the top Google search result", usage="[query]", @@ -121,7 +121,7 @@ async def search(self, ctx, *, query: str): @auxiliary.with_typing @commands.guild_only() @google.command( - aliases=["i", "is"], + aliases=["i", "is", "I", "IS"], brief="Searches Google Images", description="Returns the top Google Images search result", usage="[query]", @@ -162,7 +162,7 @@ async def images(self, ctx, *, query: str): @auxiliary.with_typing @commands.guild_only() @commands.command( - aliases=["yt"], + aliases=["yt", "YT"], brief="Searches YouTube", description="Returns the top YouTube search result", usage="[query]",