From ed7e335d4eae9668b357157ffd49d8e9f51d3ef5 Mon Sep 17 00:00:00 2001 From: Davte Date: Thu, 19 Nov 2020 14:37:25 +0100 Subject: [PATCH] Items in __all__ must be str, not module --- davtelepot/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/davtelepot/__init__.py b/davtelepot/__init__.py index ab2614e..78b8c64 100644 --- a/davtelepot/__init__.py +++ b/davtelepot/__init__.py @@ -11,12 +11,12 @@ __author__ = "Davide Testa" __email__ = "davide@davte.it" __credits__ = ["Marco Origlia", "Nick Lee @Nickoala"] __license__ = "GNU General Public License v3.0" -__version__ = "2.7.2" +__version__ = "2.7.3" __maintainer__ = "Davide Testa" __contact__ = "t.me/davte" -from . import (administration_tools, api, authorization, bot, helper, languages, - messages, suggestions, useful_tools, utilities) +from . import (administration_tools, api, authorization, bot, helper, + languages, messages, suggestions, useful_tools, utilities) -__all__ = [administration_tools, api, authorization, bot, helper, languages, - messages, suggestions, useful_tools, utilities] +__all__ = ['administration_tools', 'api', 'authorization', 'bot', 'helper', + 'languages', 'messages', 'suggestions', 'useful_tools', 'utilities']