From a601cf43ab715d2e7f00b617071d5ccc1082b4ee Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Wed, 6 May 2020 11:09:19 +0200 Subject: [PATCH] Allow clearing the author information in embeds. --- discord/embeds.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/discord/embeds.py b/discord/embeds.py index 8acf1e32f..e02918eff 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -395,6 +395,21 @@ class Embed: return self + def remove_author(self): + """Clears embed's author information. + + This function returns the class instance to allow for fluent-style + chaining. + + .. versionadded:: 1.4 + """ + try: + del self._author + except AttributeError: + pass + + return self + @property def fields(self): """Returns a :class:`list` of ``EmbedProxy`` denoting the field contents.