telegram: Formatting imports

This commit is contained in:
Gonzalo Matheu
2021-04-14 18:20:10 -03:00
parent 5fae4ea2fd
commit e3c5a4b3fc
2 changed files with 4 additions and 6 deletions

View File

@@ -12,12 +12,10 @@ from typing import Any, Callable, Dict, List, Union
import arrow
from tabulate import tabulate
from telegram import (
KeyboardButton, ParseMode, ReplyKeyboardMarkup,
Update, InlineKeyboardMarkup, InlineKeyboardButton
)
from telegram import (InlineKeyboardButton, InlineKeyboardMarkup, KeyboardButton, ParseMode,
ReplyKeyboardMarkup, Update)
from telegram.error import NetworkError, TelegramError
from telegram.ext import CallbackContext, CommandHandler, Updater, CallbackQueryHandler
from telegram.ext import CallbackContext, CallbackQueryHandler, CommandHandler, Updater
from telegram.utils.helpers import escape_markdown
from freqtrade.__init__ import __version__