From 7ac8bd5e85fb67a673aee3388465fee0672983ca Mon Sep 17 00:00:00 2001 From: Lonami Date: Wed, 26 Jun 2019 19:47:25 +0200 Subject: [PATCH] Revert unwanted change --- telethon/client/chats.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/telethon/client/chats.py b/telethon/client/chats.py index 7f5f804c..f1bb6040 100644 --- a/telethon/client/chats.py +++ b/telethon/client/chats.py @@ -3,6 +3,7 @@ import itertools import string import typing +from .users import UserMethods from .. import helpers, utils, hints from ..requestiter import RequestIter from ..tl import types, functions, custom @@ -344,7 +345,7 @@ class _ProfilePhotoIter(RequestIter): self.request.offset_id = result.messages[-1].id -class ChatMethods: +class ChatMethods(UserMethods): # region Public methods