From fb9ee7381d7482342d8dd4923672d7432ff79a81 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 15 Jan 2024 14:11:08 +0000 Subject: [PATCH] fix(aurora): fixed absent abstractmethods in mixin class --- aurora/abc.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/aurora/abc.py b/aurora/abc.py index bd16d9b..4e1846b 100644 --- a/aurora/abc.py +++ b/aurora/abc.py @@ -33,7 +33,19 @@ class Mixin(ABC): raise NotImplementedError() @abstractmethod - async def aurora_config(self, ctx: commands.Context) -> None: + async def aurora_settings(self, ctx: commands.Context) -> None: + raise NotImplementedError() + + @abstractmethod + async def aurora_settings_core(self, ctx: commands.Context) -> None: + raise NotImplementedError() + + @abstractmethod + async def aurora_settings_addrole(self, ctx: commands.Context) -> None: + raise NotImplementedError() + + @abstractmethod + async def aurora_settings_immunity(self, ctx: commands.Context) -> None: raise NotImplementedError() @abstractmethod