renamed emoji to emojiinfo
This commit is contained in:
parent
8fdf587bde
commit
20c3007306
4 changed files with 6 additions and 6 deletions
|
@ -1,5 +0,0 @@
|
||||||
from .emoji import Emoji
|
|
||||||
|
|
||||||
|
|
||||||
async def setup(bot):
|
|
||||||
await bot.add_cog(Emoji(bot))
|
|
5
emojiinfo/__init__.py
Normal file
5
emojiinfo/__init__.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from .emojiinfo import EmojiInfo
|
||||||
|
|
||||||
|
|
||||||
|
async def setup(bot):
|
||||||
|
await bot.add_cog(EmojiInfo(bot))
|
|
@ -7,7 +7,7 @@ from redbot.core.bot import Red
|
||||||
from redbot.core.utils.chat_formatting import humanize_list
|
from redbot.core.utils.chat_formatting import humanize_list
|
||||||
|
|
||||||
|
|
||||||
class Emoji(commands.cog):
|
class EmojiInfo(commands.cog):
|
||||||
"""Retrieve information about emojis."""
|
"""Retrieve information about emojis."""
|
||||||
|
|
||||||
__author__: list[str] = ["SeaswimmerTheFsh"]
|
__author__: list[str] = ["SeaswimmerTheFsh"]
|
Loading…
Reference in a new issue