mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-29 05:18:10 +00:00
Add new blank lines for clarity and for fixing rst
This commit is contained in:
parent
856870c195
commit
92d47f17f3
@ -215,17 +215,23 @@ class User(Object):
|
|||||||
|
|
||||||
return self._client.unarchive_chats(self.id)
|
return self._client.unarchive_chats(self.id)
|
||||||
|
|
||||||
|
|
||||||
def block(self):
|
def block(self):
|
||||||
"""Bound method *block* of :obj:`User`.
|
"""Bound method *block* of :obj:`User`.
|
||||||
|
|
||||||
Use as a shortcut for:
|
Use as a shortcut for:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
client.block_user(123456789)
|
client.block_user(123456789)
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
user.block()
|
user.block()
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
True on success.
|
True on success.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
RPCError: In case of a Telegram RPC error.
|
RPCError: In case of a Telegram RPC error.
|
||||||
"""
|
"""
|
||||||
@ -235,14 +241,21 @@ class User(Object):
|
|||||||
|
|
||||||
def unblock(self):
|
def unblock(self):
|
||||||
"""Bound method *unblock* of :obj:`User`.
|
"""Bound method *unblock* of :obj:`User`.
|
||||||
|
|
||||||
Use as a shortcut for:
|
Use as a shortcut for:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
client.unblock_user(123456789)
|
client.unblock_user(123456789)
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
user.unblock()
|
user.unblock()
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
True on success.
|
True on success.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
RPCError: In case of a Telegram RPC error.
|
RPCError: In case of a Telegram RPC error.
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user