diff --git a/discord/calls.py b/discord/calls.py index 316f88974..6785d609b 100644 --- a/discord/calls.py +++ b/discord/calls.py @@ -74,6 +74,8 @@ class CallMessage: The message associated with this call message. """ + __slots__ = ('message', 'ended_timestamp', 'participants') + def __init__(self, message: Message, *, participants: List[User], ended_timestamp: str) -> None: self.message = message self.ended_timestamp = utils.parse_time(ended_timestamp)