From 121e3c370c337c0042b837ed661b5a1ecd2d0d7f Mon Sep 17 00:00:00 2001 From: Davte Date: Tue, 20 Nov 2018 20:08:06 +0100 Subject: [PATCH] Git-ignore test.py. davteutil should be considered third party module since it is homed in a separate repository. --- .gitignore | 3 +++ davtelepot/__init__.py | 2 +- davtelepot/custombot.py | 6 ++---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index d09e38b..932188e 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,9 @@ local_* # my_config.sh my_config.sh +# Test +davtelepot/test.py + # ---> Python # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/davtelepot/__init__.py b/davtelepot/__init__.py index de71c65..41489b8 100644 --- a/davtelepot/__init__.py +++ b/davtelepot/__init__.py @@ -7,7 +7,7 @@ __author__ = "Davide Testa" __email__ = "davte@libero.it" __credits__ = "Marco Origlia" __license__ = "GNU General Public License v3.0" -__version__ = "1.3.5" +__version__ = "1.3.6" __maintainer__ = "Davide Testa" __contact__ = "t.me/davte" diff --git a/davtelepot/custombot.py b/davtelepot/custombot.py index d59e25f..fe75439 100644 --- a/davtelepot/custombot.py +++ b/davtelepot/custombot.py @@ -23,15 +23,13 @@ import os # Third party modules import dataset -import telepot -import telepot.aio - -# Project modules from davteutil.utilities import ( Gettable, escape_html_chars, get_cleaned_text, line_drawing_unordered_list, make_lines_of_buttons, markdown_check, MyOD, pick_most_similar_from_list, remove_html_tags, sleep_until ) +import telepot +import telepot.aio def split_text_gracefully(text, limit, parse_mode):