Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.vscode/settings.json
.vscode
5 changes: 5 additions & 0 deletions emote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
from .emote import Emote


__red_end_user_data_statement__ = (
"This cog does not store user-specific data."
)


def setup(bot: commands.Bot):
n = Emote(bot)
bot.add_listener(n.check_emotes, "on_message")
Expand Down
Loading