From d519acd53856d615570ecda83a05d66718667aca Mon Sep 17 00:00:00 2001 From: kevincaires Date: Sun, 14 Aug 2022 11:35:00 -0300 Subject: [PATCH] FIX lint stuf. --- utils/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/commands.py b/utils/commands.py index 6d6d2b2..0c9e104 100644 --- a/utils/commands.py +++ b/utils/commands.py @@ -51,6 +51,7 @@ async def random_quote(bot: object) -> str: except Exception as ex: return await bot.send(ex) + @client.command(aliases=['qstack']) async def queue_stack(bot: object) -> str: """ @@ -63,4 +64,3 @@ async def queue_stack(bot: object) -> str: rmessage = "A list of the 5 latest message IDs follows: " + id_stack return await bot.send(rmessage) -