mirror of
				https://github.com/LonamiWebs/Telethon.git
				synced 2025-11-04 09:57:29 +03:00 
			
		
		
		
	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
 |