Ruby-Cogs/levelup/shared/__init__.py
Valerie 477974d53c
Some checks are pending
Run pre-commit / Run pre-commit (push) Waiting to run
Upload 2 Cogs & Update README
2025-05-23 01:30:53 -04:00

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