mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-04-21 00:07:51 +00:00
Add Embed.copy to do a copy on an embed object.
This commit is contained in:
parent
35a330c5d3
commit
7fbdc6e83f
@ -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', []):
|
||||
|
Loading…
x
Reference in New Issue
Block a user