Add EmojiInfo cog #27

Merged
cswimr merged 27 commits from emoji into main 2024-05-08 16:07:30 -04:00
4 changed files with 6 additions and 6 deletions
Showing only changes of commit 20c3007306 - Show all commits

View file

@ -1,5 +0,0 @@
from .emoji import Emoji
async def setup(bot):
await bot.add_cog(Emoji(bot))

5
emojiinfo/__init__.py Normal file
View file

@ -0,0 +1,5 @@
from .emojiinfo import EmojiInfo
async def setup(bot):
await bot.add_cog(EmojiInfo(bot))

View file

@ -7,7 +7,7 @@ from redbot.core.bot import Red
from redbot.core.utils.chat_formatting import humanize_list
class Emoji(commands.cog):
class EmojiInfo(commands.cog):
"""Retrieve information about emojis."""
__author__: list[str] = ["SeaswimmerTheFsh"]