Files
Mace-AIO-Discord-Bot---With…/bot/core/Cog.py
2026-07-12 15:16:07 +05:30

14 lines
291 B
Python

from __future__ import annotations
from discord.ext import commands
__all__ = ("Cog",)
class Cog(commands.Cog):
def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)
def __str__(self) -> str:
return "{0.__class__.__name__}".format(self)