From 8877f6f2be71781208684d4685d5d9440b80d376 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Fri, 12 Jan 2018 15:43:09 -0600 Subject: [PATCH] No need for method to be async --- cogs/tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/tutorial.py b/cogs/tutorial.py index e1672b9..f0e19ce 100644 --- a/cogs/tutorial.py +++ b/cogs/tutorial.py @@ -39,7 +39,7 @@ class Tutorial: await ctx.author.send(embed) return - async def generate_embed(self, command): + def generate_embed(self, command): # Create the embed object opts = { "title": "Here is the tutorial for the command {}:\n\n".format(command.qualified_name),