From 3cf0c06ba2c80a3bdce82d2608a4815dce61ac4a Mon Sep 17 00:00:00 2001 From: Davte Date: Thu, 19 Nov 2020 14:29:48 +0100 Subject: [PATCH] Items in __all__ must be str, not module --- ciclopibot/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ciclopibot/__init__.py b/ciclopibot/__init__.py index 5cf741d..4a5cffb 100644 --- a/ciclopibot/__init__.py +++ b/ciclopibot/__init__.py @@ -3,10 +3,10 @@ __author__ = "Davide Testa" __email__ = "davide@davte.it" __license__ = "GNU General Public License v3.0" -__version__ = "1.2.3" +__version__ = "1.2.4" __maintainer__ = "Davide Testa" __contact__ = "t.me/davte" -from . import ciclopi +from . import ciclopi, messages -__all__ = [ciclopi] +__all__ = ['ciclopi', 'messages']