2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-09-01 14:55:12 +00:00

Small fixes on example docs (#460)

This commit is contained in:
Yusuf_M_Thon_iD
2020-08-21 12:23:33 +07:00
committed by GitHub
parent 879e0bfc2d
commit b95587ed31

View File

@@ -66,7 +66,7 @@ class RestrictChatMember(BaseClient):
app.restrict_chat_member(chat_id, user_id, ChatPermissions())
# Chat member muted for 24h
app.restrict_chat_member(chat_id, user_id, ChatPermissions(), int(time.time() + 86400))
app.restrict_chat_member(chat_id, user_id, ChatPermissions(), int(time() + 86400))
# Chat member can only send text messages
app.restrict_chat_member(chat_id, user_id, ChatPermissions(can_send_messages=True))