From 67d52a8fd8542c7e8b919bfc3b0b390478c96e9d Mon Sep 17 00:00:00 2001 From: Davte Date: Mon, 17 Feb 2020 13:43:07 +0100 Subject: [PATCH] languages module added to __all__ --- davtelepot/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/davtelepot/__init__.py b/davtelepot/__init__.py index 6e851ab..c006f21 100644 --- a/davtelepot/__init__.py +++ b/davtelepot/__init__.py @@ -14,12 +14,12 @@ __author__ = "Davide Testa" __email__ = "davide@davte.it" __credits__ = ["Marco Origlia", "Nick Lee @Nickoala"] __license__ = "GNU General Public License v3.0" -__version__ = "2.4.1" +__version__ = "2.4.2" __maintainer__ = "Davide Testa" __contact__ = "t.me/davte" # Legacy module; please use `from davtelepot.bot import Bot` from now on 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]