Include administration tools and helper modules in __all__

This commit is contained in:
Davte 2020-02-14 17:11:40 +01:00
parent 61fe8e0591
commit ecdb639741

View File

@ -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.3.26"
__version__ = "2.3.27"
__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 bot, utilities
from . import administration_tools, bot, helper, utilities
__all__ = [Bot, bot, utilities]
__all__ = [administration_tools, Bot, bot, helper, utilities]