diff --git a/discord/message.py b/discord/message.py index ebd4c8bf00..b0a1cb28a2 100644 --- a/discord/message.py +++ b/discord/message.py @@ -506,11 +506,7 @@ class Message(Hashable): .. describe:: hash(x) Returns the message's hash. - - .. describe:: len(x) - - Returns the length of the message's content. - + Attributes ----------- tts: :class:`bool` @@ -720,9 +716,6 @@ def __repr__(self) -> str: f'<{name} id={self.id} channel={self.channel!r} type={self.type!r} author={self.author!r} flags={self.flags!r}>' ) - def __len__(self): - return len(self.content) - def _try_patch(self, data, key, transform=None) -> None: try: value = data[key]