You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hydrogram/methods/phone/invite_group_call_members.py
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,15 @@
19
19
from __future__ importannotations
20
20
21
21
importhydrogram
22
-
fromhydrogramimporttypes, raw
22
+
fromhydrogramimportraw, types
23
23
24
24
25
25
classInviteGroupCallMembers:
26
26
asyncdefinvite_group_call_members(
27
-
self: "hydrogram.Client",
27
+
self: hydrogram.Client,
28
28
chat_id: int|str,
29
29
user_ids: int|str|list[int|str],
30
-
) ->"types.Message":
30
+
) ->types.Message:
31
31
"""Invites users to an active group call. Sends a service message of type :obj:`~pyrogram.enums.MessageServiceType.VIDEO_CHAT_PARTICIPANTS_INVITED` for video chats.
0 commit comments