Skip to content

Commit aafcdf1

Browse files
committed
fix RawReactionClearEmojiEvent __slots__
1 parent 873a41e commit aafcdf1

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

discord/raw_models.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,17 @@ class RawReactionClearEmojiEvent(_RawReprMixin):
327327
.. versionadded:: 2.5
328328
"""
329329

330-
__slots__ = ("message_id", "channel_id", "guild_id", "emoji", "burst", "data")
330+
__slots__ = (
331+
"message_id",
332+
"channel_id",
333+
"guild_id",
334+
"emoji",
335+
"burst",
336+
"data",
337+
"burst_colours",
338+
"burst_colors",
339+
"type"
340+
)
331341

332342
def __init__(self, data: ReactionClearEmojiEvent, emoji: PartialEmoji) -> None:
333343
self.emoji: PartialEmoji = emoji

0 commit comments

Comments
 (0)