diff --git a/boostutils/__init__.py b/boostutils/__init__.py new file mode 100644 index 0000000..11b85d8 --- /dev/null +++ b/boostutils/__init__.py @@ -0,0 +1,8 @@ +from redbot.core.bot import Red + +from .core import BoostUtils + + +async def setup(bot: Red) -> None: + cog: BoostUtils = BoostUtils(bot) + await bot.add_cog(cog) \ No newline at end of file diff --git a/boostutils/core.py b/boostutils/core.py index 68d7714..edbed5d 100644 --- a/boostutils/core.py +++ b/boostutils/core.py @@ -21,8 +21,8 @@ class BoostUtils( __author__: Final[List[str]] = ["inthedark.org"] __version__: Final[str] = "0.1.0" - def __init__(self, bot: Red, _args: Any) -> None: - super().__init__(*_args) + def __init__(self, bot: Red) -> None: + super().__init__() self.bot: Red = bot self.config: Config = Config.get_conf( self,