From 84a2272357c169520e05bdc517cd07b8e7efa28a Mon Sep 17 00:00:00 2001 From: sgoudham Date: Wed, 1 Jul 2020 19:57:15 +0100 Subject: [PATCH] Changing class name --- cogs/fun/enso.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cogs/fun/enso.py b/cogs/fun/enso.py index 58ee6121..9e927035 100644 --- a/cogs/fun/enso.py +++ b/cogs/fun/enso.py @@ -29,7 +29,7 @@ def displayServerImage(array, ctx, name): return embed -class Waifus(commands.Cog): +class Enso(commands.Cog): def __init__(self, bot): self.bot = bot @@ -116,3 +116,7 @@ class Waifus(commands.Cog): await asyncio.sleep(2.5) # Delete the message await message.delete() + + +def setup(bot): + bot.add_cog(Enso(bot))