From b1f11b7a9722d33d16a23f3257d28481a066a22b Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Fri, 26 Jan 2018 11:49:07 +0100 Subject: [PATCH] Update docstrings --- pyrogram/client/client.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyrogram/client/client.py b/pyrogram/client/client.py index 01dfc986..9c838e0d 100644 --- a/pyrogram/client/client.py +++ b/pyrogram/client/client.py @@ -93,6 +93,9 @@ class Client: last_name (:obj:`str`, optional): Same purpose as *first_name*; pass a Last Name to avoid entering it manually. It can be an empty string: "" + + workers (:obj:`int`, optional): + Thread pool size for handling incoming messages (updates). Defaults to 4. """ INVITE_LINK_RE = re.compile(r"^(?:https?://)?t\.me/joinchat/(.+)$")