From 3234218b4eeac70a75ce565e200f4417097d90d1 Mon Sep 17 00:00:00 2001 From: Siphalor Date: Fri, 29 Jan 2021 11:38:10 +0100 Subject: [PATCH] Fix incorrect module --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index b7d5708..d4e508c 100644 --- a/bot.py +++ b/bot.py @@ -312,7 +312,7 @@ async def quote_command(ctx: commands.Context, author: Optional[str], *, quote: @bot.command(name='quote_remove', brief='Remove a quote') -async def quote_remove_command(ctx: discord.Context, author: str, quote: str): +async def quote_remove_command(ctx: commands.Context, author: str, quote: str): if not ctx.author.guild_permissions.administrator: await ctx.channel.send("Only admins are allowed to remove quotes!") quotes: Optional[dict[str, List[str]]] = config_get("guild_access", guild=ctx.guild.id)