From 6c83447eb8314160e79557d9cacf152ff85bae8e Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 2 May 2022 23:44:16 +0300 Subject: [PATCH] telegram. Code style changes. --- bot.py | 3 ++- telegram/command_processor.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index b3de037..444c20e 100644 --- a/bot.py +++ b/bot.py @@ -1,8 +1,9 @@ +from dotenv import load_dotenv import logging import os + from telegram.command_processor import CommandProcessor -from dotenv import load_dotenv load_dotenv() diff --git a/telegram/command_processor.py b/telegram/command_processor.py index 7856ac6..1081f99 100644 --- a/telegram/command_processor.py +++ b/telegram/command_processor.py @@ -1,6 +1,7 @@ import telebot from telebot.types import Message + class CommandProcessor: """Processes user input and dispatches the data to other services."""