Add bound methods block and unblock to User object

This commit is contained in:
kalmengr 2019-07-09 17:33:41 -04:00 committed by GitHub
parent 485877daa3
commit 856870c195
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,3 +214,38 @@ class User(Object):
""" """
return self._client.unarchive_chats(self.id) return self._client.unarchive_chats(self.id)
def block(self):
"""Bound method *block* of :obj:`User`.
Use as a shortcut for:
.. code-block:: python
client.block_user(123456789)
Example:
.. code-block:: python
user.block()
Returns:
True on success.
Raises:
RPCError: In case of a Telegram RPC error.
"""
return self._client.block_user(self.id)
def unblock(self):
"""Bound method *unblock* of :obj:`User`.
Use as a shortcut for:
.. code-block:: python
client.unblock_user(123456789)
Example:
.. code-block:: python
user.unblock()
Returns:
True on success.
Raises:
RPCError: In case of a Telegram RPC error.
"""
return self._client.unblock_user(self.id)