From fd5886a058aaecba71d58904137e1f9a37af7775 Mon Sep 17 00:00:00 2001 From: Steve C Date: Tue, 19 Apr 2022 01:25:11 -0400 Subject: [PATCH] Add ValueError to PartialEmoji.read docstring --- discord/partial_emoji.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/discord/partial_emoji.py b/discord/partial_emoji.py index cf65efb3b..1fc31497f 100644 --- a/discord/partial_emoji.py +++ b/discord/partial_emoji.py @@ -233,6 +233,26 @@ class PartialEmoji(_EmojiTag, AssetMixin): return f'{Asset.BASE}/emojis/{self.id}.{fmt}' async def read(self) -> bytes: + """|coro| + + Retrieves the content of this asset as a :class:`bytes` object. + + Raises + ------ + DiscordException + There was no internal connection state. + HTTPException + Downloading the asset failed. + NotFound + The asset was deleted. + ValueError + The PartialEmoji is not a custom emoji. + + Returns + ------- + :class:`bytes` + The content of the asset. + """ if self.is_unicode_emoji(): raise ValueError('PartialEmoji is not a custom emoji')