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
|
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…
x
Reference in New Issue
Block a user