From dc314b4599d6dbc6b8ca9076832101127ea74d1f Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 2 May 2022 23:44:16 +0300 Subject: [PATCH] #7 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..22aff3f 100644 --- a/bot.py +++ b/bot.py @@ -1,8 +1,9 @@ import logging import os +from dotenv import load_dotenv + 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."""