languages module added to __all__

This commit is contained in:
Davte 2020-02-17 13:43:07 +01:00
parent 61ea563bfa
commit 67d52a8fd8

View File

@ -14,12 +14,12 @@ __author__ = "Davide Testa"
__email__ = "davide@davte.it" __email__ = "davide@davte.it"
__credits__ = ["Marco Origlia", "Nick Lee @Nickoala"] __credits__ = ["Marco Origlia", "Nick Lee @Nickoala"]
__license__ = "GNU General Public License v3.0" __license__ = "GNU General Public License v3.0"
__version__ = "2.4.1" __version__ = "2.4.2"
__maintainer__ = "Davide Testa" __maintainer__ = "Davide Testa"
__contact__ = "t.me/davte" __contact__ = "t.me/davte"
# Legacy module; please use `from davtelepot.bot import Bot` from now on # Legacy module; please use `from davtelepot.bot import Bot` from now on
from .custombot import Bot from .custombot import Bot
from . import administration_tools, authorization, bot, helper, suggestions, utilities from . import administration_tools, authorization, bot, helper, languages, suggestions, utilities
__all__ = [administration_tools, authorization, Bot, bot, helper, suggestions, utilities] __all__ = [administration_tools, authorization, Bot, bot, helper, languages, suggestions, utilities]