diff options
| -rw-r--r-- | discord/message.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/discord/message.py b/discord/message.py index 3efea9fb..678d9f37 100644 --- a/discord/message.py +++ b/discord/message.py @@ -508,8 +508,9 @@ class Message: Parameters ----------- - content: str + content: Optional[str] The new content to replace the message with. + Could be ``None`` to remove the content. embed: Optional[:class:`Embed`] The new embed to replace the original with. Could be ``None`` to remove the embed. |