We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53584bc commit 81895d7Copy full SHA for 81895d7
1 file changed
pyrogram/types/user_and_chats/chat.py
@@ -126,7 +126,7 @@ class Chat(Object):
126
The default "send_as" chat.
127
Returned only in :meth:`~pyrogram.Client.get_chat`.
128
129
- available_reactions (List of :obj:`~pyrogram.types.Reaction`, *optional*):
+ available_reactions (:obj:`~pyrogram.types.ChatReactions`, *optional*):
130
Available reactions in the chat.
131
132
"""
@@ -162,7 +162,7 @@ def __init__(
162
distance: int = None,
163
linked_chat: "types.Chat" = None,
164
send_as_chat: "types.Chat" = None,
165
- available_reactions: Optional[List["types.Reaction"]] = None
+ available_reactions: Optional["types.ChatReactions"] = None
166
):
167
super().__init__(client)
168
0 commit comments