Include TAKEOUT_INIT_DELAY_X in the available errors

This commit is contained in:
Lonami Exo
2018-06-27 09:46:14 +02:00
parent 75865cbaa8
commit e604960a1d
3 changed files with 7 additions and 4 deletions

View File

@@ -2,10 +2,11 @@ import logging
from .client.telegramclient import TelegramClient
from .network import connection
from .tl import types, functions, custom
from . import version, events, utils
from . import version, events, utils, errors
__version__ = version.__version__
logging.getLogger(__name__).addHandler(logging.NullHandler())
__all__ = ['TelegramClient', 'types', 'functions', 'custom', 'events', 'utils']
__all__ = ['TelegramClient', 'types', 'functions', 'custom',
'events', 'utils', 'errors']