mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-03-13 07:55:48 +03:00
Set __all__ on telethon.__init__.py
This commit is contained in:
parent
f3f0c28505
commit
898ce34c65
|
@ -2,8 +2,11 @@ import logging
|
|||
from .telegram_bare_client import TelegramBareClient
|
||||
from .telegram_client import TelegramClient
|
||||
from .network import connection
|
||||
from . import tl, version
|
||||
from .tl import types, functions
|
||||
from . import version, events, utils
|
||||
|
||||
|
||||
__version__ = version.__version__
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
||||
__all__ = ['TelegramClient', 'types', 'functions', 'events', 'utils']
|
||||
|
|
Loading…
Reference in New Issue
Block a user