Browse Source
Fixed error in Message class description
Attachments listed as a list, when it's a dict
pull/119/head
KevTheGame-Dev
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
disco/types/message.py
|
@ -346,7 +346,7 @@ class Message(SlottedModel): |
|
|
IDs for roles mentioned within this message. |
|
|
IDs for roles mentioned within this message. |
|
|
embeds : list[`MessageEmbed`] |
|
|
embeds : list[`MessageEmbed`] |
|
|
Embeds for this message. |
|
|
Embeds for this message. |
|
|
attachments : list[`MessageAttachment`] |
|
|
attachments : dict[`MessageAttachment`] |
|
|
Attachments for this message. |
|
|
Attachments for this message. |
|
|
reactions : list[`MessageReaction`] |
|
|
reactions : list[`MessageReaction`] |
|
|
Reactions for this message. |
|
|
Reactions for this message. |
|
|