From 55ecc195d9999047107664b29a050e6f2f44cbea Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 14 Mar 2023 17:43:11 +0100 Subject: [PATCH] Changing init file --- reginaldCog/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reginaldCog/__init__.py b/reginaldCog/__init__.py index d908bcd..8b0d814 100644 --- a/reginaldCog/__init__.py +++ b/reginaldCog/__init__.py @@ -1,5 +1,6 @@ +from redbot.core.bot import Red from .reginald import ReginaldCog -def setup(bot): +def setup(bot: Red): cog = ReginaldCog(bot) bot.add_cog(cog) \ No newline at end of file