fix(aurora): fixed absent abstractmethods in mixin class
This commit is contained in:
parent
e27349a2ab
commit
fb9ee7381d
1 changed files with 13 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue