Browse Source

Add Embed.copy to do a copy on an embed object.

pull/1978/head
Rapptz 6 years ago
parent
commit
7fbdc6e83f
  1. 4
      discord/embeds.py

4
discord/embeds.py

@ -169,6 +169,10 @@ class Embed:
return self return self
def copy(self):
"""Returns a shallow copy of the embed."""
return Embed.from_dict(self.to_dict())
def __len__(self): def __len__(self):
total = len(self.title) + len(self.description) total = len(self.title) + len(self.description)
for field in getattr(self, '_fields', []): for field in getattr(self, '_fields', []):

Loading…
Cancel
Save