diff options
| author | Rapptz <[email protected]> | 2017-05-30 22:30:05 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-05-30 22:30:05 -0400 |
| commit | af58e45e14a6edd011e14d3f6c539d410ed9f2e8 (patch) | |
| tree | 23e926ded86d3c328b14a8e03065af4f27642cfd | |
| parent | Implement an Attachment model. (diff) | |
| download | discord.py-af58e45e14a6edd011e14d3f6c539d410ed9f2e8.tar.xz discord.py-af58e45e14a6edd011e14d3f6c539d410ed9f2e8.zip | |
Export Attachment class.
| -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 231d83ea..32ff5b02 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -25,7 +25,7 @@ from .channel import * from .guild import Guild from .relationship import Relationship from .member import Member, VoiceState -from .message import Message +from .message import Message, Attachment from .errors import * from .calls import CallMessage, GroupCall from .permissions import Permissions, PermissionOverwrite |