From 6e9b15d642a174b83fa4773d9eb49b7ace2234a2 Mon Sep 17 00:00:00 2001 From: Aykut Yilmaz Date: Sat, 6 Jun 2020 18:25:51 +0200 Subject: [PATCH] Fix docstring indentation in SQLiteSession --- telethon/sessions/sqlite.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/telethon/sessions/sqlite.py b/telethon/sessions/sqlite.py index 0ecef74d..e1f8d58d 100644 --- a/telethon/sessions/sqlite.py +++ b/telethon/sessions/sqlite.py @@ -21,12 +21,13 @@ CURRENT_VERSION = 6 # database version class SQLiteSession(MemorySession): - """This session contains the required information to login into your - Telegram account. NEVER give the saved session file to anyone, since - they would gain instant access to all your messages and contacts. + """ + This session contains the required information to login into your + Telegram account. NEVER give the saved session file to anyone, since + they would gain instant access to all your messages and contacts. - If you think the session has been compromised, close all the sessions - through an official Telegram client to revoke the authorization. + If you think the session has been compromised, close all the sessions + through an official Telegram client to revoke the authorization. """ def __init__(self, session_id=None):