renamed emoji to emojiinfo

This commit is contained in:
Seaswimmer 2024-05-08 13:53:21 -04:00
parent 8fdf587bde
commit 20c3007306
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F
4 changed files with 6 additions and 6 deletions

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