fix(aurora): fixed absent abstractmethods in mixin class

This commit is contained in:
Seaswimmer 2024-01-15 14:11:08 +00:00
parent e27349a2ab
commit fb9ee7381d
Signed by untrusted user: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -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