diff options
| author | Rapptz <[email protected]> | 2016-12-24 05:11:06 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-03 09:52:02 -0500 |
| commit | 79a49f91458159564ae5a7696797829c6a848a5d (patch) | |
| tree | 0b588b8c3ef275f47061e8da47e6ca8a88403080 /discord/abc.py | |
| parent | Rename MessageChannel.send_message to send and unify interface. (diff) | |
| download | discord.py-79a49f91458159564ae5a7696797829c6a848a5d.tar.xz discord.py-79a49f91458159564ae5a7696797829c6a848a5d.zip | |
Absolute import some circular dependencies to appease Python 3.4.
Diffstat (limited to 'discord/abc.py')
| -rw-r--r-- | discord/abc.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/discord/abc.py b/discord/abc.py index b52edb46..e609faf2 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -34,6 +34,11 @@ from .iterators import LogsFromIterator from .context_managers import Typing from .errors import ClientException, NoMoreMessages +import discord.message +import discord.iterators +import discord.context_managers +import discord.errors + class Snowflake(metaclass=abc.ABCMeta): __slots__ = () |