From 1bdc5d40e95bb01a3780ed69c8bf3e592fb2b631 Mon Sep 17 00:00:00 2001 From: Groosha Date: Tue, 18 May 2021 23:23:30 +0300 Subject: [PATCH] Added whitespace (E226) --- aiogram/types/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/types/chat.py b/aiogram/types/chat.py index bfeb82e5..4c0db8c9 100644 --- a/aiogram/types/chat.py +++ b/aiogram/types/chat.py @@ -68,5 +68,5 @@ class Chat(TelegramObject): Finally, self.id is substracted from that number """ short_id = str(self.id).replace("-100", "") - shift = int(-1 * pow(10, len(short_id)+2)) + shift = int(-1 * pow(10, len(short_id) + 2)) return shift - self.id