Queer European MD passionate about IT
Browse Source

Items in __all__ must be str, not module

Davte 3 years ago
parent
commit
3cf0c06ba2
1 changed files with 3 additions and 3 deletions
  1. 3 3
      ciclopibot/__init__.py

+ 3 - 3
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']