2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 12:57:52 +00:00

Fix tiny typo: contact -> contacts

This commit is contained in:
Dan 2019-07-09 23:51:43 +02:00
parent 3a0d67bf0a
commit 6a62d1b8c4
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ class BlockUser(BaseClient):
"""
return bool(
self.send(
functions.contact.Block(
functions.contacts.Block(
id=self.resolve_peer(user_id)
)
)

View File

@ -38,7 +38,7 @@ class UnblockUser(BaseClient):
"""
return bool(
self.send(
functions.contact.Unblock(
functions.contacts.Unblock(
id=self.resolve_peer(user_id)
)
)