diff --git a/cogs/randcommands.py b/cogs/randcommands.py index ab3d4ec..a6cb4f6 100644 --- a/cogs/randcommands.py +++ b/cogs/randcommands.py @@ -4,6 +4,7 @@ from io import BytesIO from random import choice, getrandbits, randint from time import perf_counter +from urllib.parse import quote_plus import re import discord @@ -225,7 +226,7 @@ async def pikl(self, ctx, user: discord.Member): @commands.command(help="Googles something.", aliases=["lmgtfy", "search"]) async def google(self, ctx, *, query): - await reply(ctx, f"") + await reply(ctx, f"") def prime_factors(self, n: int) -> list: i = 2