From 4ce60b4cacaa7ab7fd6186f48c73bba6d09ad6a8 Mon Sep 17 00:00:00 2001 From: Vioshim <63890837+Vioshim@users.noreply.github.com> Date: Fri, 8 Apr 2022 20:53:08 -0500 Subject: [PATCH] Documented Embed limits in docstrings --- discord/embeds.py | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/discord/embeds.py b/discord/embeds.py index e28b0c59e..630f3d8c2 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -117,6 +117,7 @@ class Embed: title: Optional[:class:`str`] The title of the embed. This can be set during initialisation. + Can only be up to 256 characters. type: :class:`str` The type of embed. Usually "rich". This can be set during initialisation. @@ -125,6 +126,7 @@ class Embed: description: Optional[:class:`str`] The description of the embed. This can be set during initialisation. + Can only be up to 4096 characters. url: Optional[:class:`str`] The URL of the embed. This can be set during initialisation. @@ -335,7 +337,7 @@ class Embed: Parameters ----------- text: :class:`str` - The footer text. + The footer text. Can only be up to 2048 characters. icon_url: :class:`str` The URL of the footer icon. Only HTTP(S) is supported. """ @@ -493,7 +495,7 @@ class Embed: Parameters ----------- name: :class:`str` - The name of the author. + The name of the author. Can only be up to 256 characters. url: :class:`str` The URL for the author. icon_url: :class:`str` @@ -542,14 +544,14 @@ class Embed: """Adds a field to the embed object. This function returns the class instance to allow for fluent-style - chaining. + chaining. Can only be up to 25 fields. Parameters ----------- name: :class:`str` - The name of the field. + The name of the field. Can only be up to 256 characters. value: :class:`str` - The value of the field. + The value of the field. Can only be up to 1024 characters. inline: :class:`bool` Whether the field should be displayed inline. """ @@ -571,7 +573,7 @@ class Embed: """Inserts a field before a specified index to the embed. This function returns the class instance to allow for fluent-style - chaining. + chaining. Can only be up to 25 fields. .. versionadded:: 1.2 @@ -580,9 +582,9 @@ class Embed: index: :class:`int` The index of where to insert the field. name: :class:`str` - The name of the field. + The name of the field. Can only be up to 256 characters. value: :class:`str` - The value of the field. + The value of the field. Can only be up to 1024 characters. inline: :class:`bool` Whether the field should be displayed inline. """ @@ -631,7 +633,7 @@ class Embed: def set_field_at(self, index: int, *, name: Any, value: Any, inline: bool = True) -> Self: """Modifies a field to the embed object. - The index must point to a valid pre-existing field. + The index must point to a valid pre-existing field. Can only be up to 25 fields. This function returns the class instance to allow for fluent-style chaining. @@ -641,9 +643,9 @@ class Embed: index: :class:`int` The index of the field to modify. name: :class:`str` - The name of the field. + The name of the field. Can only be up to 256 characters. value: :class:`str` - The value of the field. + The value of the field. Can only be up to 1024 characters. inline: :class:`bool` Whether the field should be displayed inline.