From 087309a8e7dacbb825ac731977e901f64a309d33 Mon Sep 17 00:00:00 2001 From: Juni Date: Thu, 14 Apr 2022 23:00:52 -0400 Subject: [PATCH] huh? --- reactquote/reactquote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index becd861..d0323ae 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -100,7 +100,7 @@ class ReactQuote(commands.Cog): """case id""" num = int(query) if num <= numQuotes: - embed = await self._buildQuote(ctx, quotes[num-1], num) + embed = await self._buildQuote(ctx, quotes[num - 1], num) await ctx.send(embed=embed) else: await ctx.send(f"There are only {numQuotes} quotes")