From ca8e5679ee965cda0dc08ec25fc9249865f84ab4 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Mon, 15 Jan 2018 13:42:05 +0100 Subject: [PATCH] Update docstrings --- pyrogram/client/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyrogram/client/client.py b/pyrogram/client/client.py index 32885aef..12e1eae3 100644 --- a/pyrogram/client/client.py +++ b/pyrogram/client/client.py @@ -66,7 +66,7 @@ class Client: to save the session to a file named ``.session``. test_mode (:obj:`bool`, optional): - Enable or disable log-in to testing servers. Defaults to ``False``. + Enable or disable log-in to testing servers. Defaults to False. Only applicable for new sessions and will be ignored in case previously created sessions are loaded. """ @@ -134,7 +134,7 @@ class Client: Args: stop_signals (:obj:`tuple`, optional): Iterable containing signals the signal handler will listen to. - Defaults to ``(SIGINT, SIGTERM, SIGABRT)``. + Defaults to (SIGINT, SIGTERM, SIGABRT). """ for s in stop_signals: signal(s, self.signal_handler)