Queer European MD passionate about IT
Преглед изворни кода

Use davtelepot suggestions module

Davte пре 4 година
родитељ
комит
5f00ba269e
2 измењених фајлова са 5 додато и 5 уклоњено
  1. 1 1
      ciclopibot/__init__.py
  2. 4 4
      ciclopibot/bot.py

+ 1 - 1
ciclopibot/__init__.py

@@ -3,7 +3,7 @@
 __author__ = "Davide Testa"
 __email__ = "davide@davte.it"
 __license__ = "GNU General Public License v3.0"
-__version__ = "1.1.5"
+__version__ = "1.1.6"
 __maintainer__ = "Davide Testa"
 __contact__ = "t.me/davte"
 

+ 4 - 4
ciclopibot/bot.py

@@ -7,7 +7,6 @@ import sys
 
 # Third party modules
 import davtelepot
-from davtelepot import administration_tools, authorization, languages
 
 # Project modules
 from . import ciclopi
@@ -85,16 +84,17 @@ if __name__ == '__main__':
             ),
             ['telegram_id']
         )
-    administration_tools.init(bot)
+    davtelepot.administration_tools.init(bot)
     ciclopi.init(bot)
     helper.init(
         bot=bot,
     )
-    authorization.init(bot)
-    languages.init(
+    davtelepot.authorization.init(bot)
+    davtelepot.languages.init(
         bot, language_messages=language_messages,
         supported_languages=supported_languages
     )
+    davtelepot.suggestions.init(bot)
     # Run bot(s)
     logging.info("Press ctrl+C to exit.")
     exit_state = davtelepot.bot.Bot.run(