Items in __all__ must be str, not module

This commit is contained in:
Davte 2020-11-19 14:29:48 +01:00
parent 183d56ec51
commit 3cf0c06ba2
Signed by: Davte
GPG Key ID: 209AE674A0007425

View File

@ -3,10 +3,10 @@
__author__ = "Davide Testa" __author__ = "Davide Testa"
__email__ = "davide@davte.it" __email__ = "davide@davte.it"
__license__ = "GNU General Public License v3.0" __license__ = "GNU General Public License v3.0"
__version__ = "1.2.3" __version__ = "1.2.4"
__maintainer__ = "Davide Testa" __maintainer__ = "Davide Testa"
__contact__ = "t.me/davte" __contact__ = "t.me/davte"
from . import ciclopi from . import ciclopi, messages
__all__ = [ciclopi] __all__ = ['ciclopi', 'messages']