first commit
This commit is contained in:
14
bot/core/Cog.py
Normal file
14
bot/core/Cog.py
Normal file
@@ -0,0 +1,14 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user