12 lines
376 B
Python
12 lines
376 B
Python
from ..abc import CompositeMetaClass
|
|
from .levelups import LevelUps
|
|
from .profile import ProfileFormatting
|
|
from .weeklyreset import WeeklyReset
|
|
|
|
|
|
class SharedFunctions(LevelUps, ProfileFormatting, WeeklyReset, metaclass=CompositeMetaClass):
|
|
"""
|
|
Subclass all shared metaclassed parts of the cog
|
|
|
|
This includes classes with functions available to other cogs
|
|
"""
|