14 lines
248 B
Python
14 lines
248 B
Python
from abc import ABCMeta
|
|
|
|
from discord.ext.commands.cog import CogMeta
|
|
from redbot.core.bot import Red
|
|
|
|
|
|
class CompositeMetaClass(CogMeta, ABCMeta):
|
|
"""Type detection"""
|
|
|
|
|
|
class MixinMeta(metaclass=ABCMeta):
|
|
"""Type hinting"""
|
|
|
|
bot: Red
|