mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
b6b4ea669d
Since it was easy to cause MRO inconsistencies, and it's not really needed now that self is type hinted as the client.
14 lines
478 B
Python
14 lines
478 B
Python
from . import (
|
|
AccountMethods, AuthMethods, DownloadMethods, DialogMethods, ChatMethods,
|
|
BotMethods, MessageMethods, UploadMethods, ButtonMethods, UpdateMethods,
|
|
MessageParseMethods, UserMethods, TelegramBaseClient
|
|
)
|
|
|
|
|
|
class TelegramClient(
|
|
AccountMethods, AuthMethods, DownloadMethods, DialogMethods, ChatMethods,
|
|
BotMethods, MessageMethods, UploadMethods, ButtonMethods, UpdateMethods,
|
|
MessageParseMethods, UserMethods, TelegramBaseClient
|
|
):
|
|
pass
|