diff options
Diffstat (limited to 'arthur/exts/fun/ed.py')
-rw-r--r-- | arthur/exts/fun/ed.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arthur/exts/fun/ed.py b/arthur/exts/fun/ed.py index 24e0025..3ebeaea 100644 --- a/arthur/exts/fun/ed.py +++ b/arthur/exts/fun/ed.py @@ -17,6 +17,6 @@ class Ed(Cog): await ctx.send("?") -def setup(bot: KingArthur) -> None: +async def setup(bot: KingArthur) -> None: """Add cog to bot.""" - bot.add_cog(Ed(bot)) + await bot.add_cog(Ed(bot)) |