Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions techsupport_bot/commands/google.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)
Expand All @@ -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]",
Expand Down Expand Up @@ -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]",
Expand Down Expand Up @@ -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]",
Expand Down