diff options
| author | Rapptz <[email protected]> | 2017-06-09 18:36:59 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-06-09 18:36:59 -0400 |
| commit | d239cc26666ff255a0c86c83541ef90f2b586598 (patch) | |
| tree | f7c644f297190cede85b324bdb1d776543523a1e /discord/__init__.py | |
| parent | Allow sending files list smaller than 2 elements in Messageable.send (diff) | |
| download | discord.py-d239cc26666ff255a0c86c83541ef90f2b586598.tar.xz discord.py-d239cc26666ff255a0c86c83541ef90f2b586598.zip | |
Implement "partial" message events.
These are events that get triggered regardless of the state of the
message cache. Useful for getting data from before the bot was booted.
Diffstat (limited to 'discord/__init__.py')
| -rw-r--r-- | discord/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/__init__.py b/discord/__init__.py index 32ff5b02..5efdd74a 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -20,7 +20,7 @@ __version__ = '1.0.0a' from .client import Client, AppInfo from .user import User, ClientUser, Profile from .game import Game -from .emoji import Emoji, PartialEmoji +from .emoji import Emoji, PartialReactionEmoji from .channel import * from .guild import Guild from .relationship import Relationship |