Set __all__ on telethon.__init__.py

This commit is contained in:
Lonami Exo 2018-06-13 11:41:12 +02:00
parent f3f0c28505
commit 898ce34c65

View File

@ -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']