From 7fbdc6e83fccc7c3eb9c40087801e99d5a38211f Mon Sep 17 00:00:00 2001 From: Rapptz Date: Wed, 13 Mar 2019 06:08:21 -0400 Subject: [PATCH] Add Embed.copy to do a copy on an embed object. --- discord/embeds.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/discord/embeds.py b/discord/embeds.py index 663e9ea06..b756d55f1 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -169,6 +169,10 @@ class Embed: return self + def copy(self): + """Returns a shallow copy of the embed.""" + return Embed.from_dict(self.to_dict()) + def __len__(self): total = len(self.title) + len(self.description) for field in getattr(self, '_fields', []):