forked from blizzthewolf/SeaCogs
fix(aurora): fixed incorrect import name
This commit is contained in:
parent
de5f21eb20
commit
e27349a2ab
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ from abc import ABC, abstractmethod
|
||||||
from redbot.core import commands
|
from redbot.core import commands
|
||||||
from redbot.core.bot import Red
|
from redbot.core.bot import Red
|
||||||
|
|
||||||
from .utilities.config import Config
|
from .utilities.config import config
|
||||||
|
|
||||||
|
|
||||||
class CompositeMetaClass(type(commands.Cog), type(ABC)):
|
class CompositeMetaClass(type(commands.Cog), type(ABC)):
|
||||||
|
@ -21,7 +21,7 @@ class Mixin(ABC):
|
||||||
|
|
||||||
def __init__(self, *_args):
|
def __init__(self, *_args):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.config: Config
|
self.config: config
|
||||||
self.bot: Red
|
self.bot: Red
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
|
|
Loading…
Reference in a new issue