From 8103b91d78008e6f661362d3c86fd1c3c8dee424 Mon Sep 17 00:00:00 2001 From: Ben Cos <52817096+BenCos17@users.noreply.github.com> Date: Fri, 25 Oct 2024 22:25:45 +0100 Subject: [PATCH] Update __init__.py --- bell/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bell/__init__.py b/bell/__init__.py index d1c75e5..6e6d0f9 100644 --- a/bell/__init__.py +++ b/bell/__init__.py @@ -1,4 +1,4 @@ +from redbot.core.bot import Red from .bell import BellCog - -async def setup(bot): - bot.add_cog(BellCog(bot)) +async def setup(bot: Red): + await bot.add_cog(BellCog(bot)) \ No newline at end of file