diff --git a/discord/embeds.py b/discord/embeds.py index c1d528cd5a..0ee29981e8 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -424,7 +424,7 @@ def set_image(self: E, *, url: MaybeEmpty[Any]) -> E: return self - def remove_image(self): + def remove_image(self: E) -> E: """Removes the embed's image. This function returns the class instance to allow for fluent-style @@ -482,7 +482,7 @@ def set_thumbnail(self: E, *, url: MaybeEmpty[Any]) -> E: return self - def remove_thumbnail(self): + def remove_thumbnail(self: E) -> E: """Removes the embed's thumbnail. This function returns the class instance to allow for fluent-style