mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-07-01 15:50:02 +00:00
Fixed to_dict() bug for user-defined embed classes
This commit is contained in:
parent
4a8817af2b
commit
667e7c9065
@ -743,7 +743,7 @@ class Embed:
|
|||||||
# fmt: off
|
# fmt: off
|
||||||
result = {
|
result = {
|
||||||
key[1:]: getattr(self, key)
|
key[1:]: getattr(self, key)
|
||||||
for key in self.__slots__
|
for key in Embed.__slots__
|
||||||
if key[0] == '_' and hasattr(self, key)
|
if key[0] == '_' and hasattr(self, key)
|
||||||
}
|
}
|
||||||
# fmt: on
|
# fmt: on
|
||||||
|
Loading…
x
Reference in New Issue
Block a user