1
0
mirror of https://gitlab.com/simple-stock-bots/simple-stock-bot.git synced 2025-06-15 14:56:40 +00:00

black format

This commit is contained in:
Anson 2023-10-16 05:50:19 +00:00
parent e3657b0eeb
commit 1afd7aa3a2
2 changed files with 11 additions and 6 deletions

View File

@ -1,5 +1,5 @@
import logging
import time
import logging
log = logging.getLogger(__name__)

View File

@ -15,11 +15,16 @@ from T_info import T_info
import telegram
from common.symbol_router import Router
from telegram import (InlineQueryResultArticle, InputTextMessageContent,
LabeledPrice, Update)
from telegram.ext import (Application, CommandHandler, ContextTypes,
InlineQueryHandler, MessageHandler,
PreCheckoutQueryHandler, filters)
from telegram import InlineQueryResultArticle, InputTextMessageContent, LabeledPrice, Update
from telegram.ext import (
Application,
CommandHandler,
ContextTypes,
InlineQueryHandler,
MessageHandler,
PreCheckoutQueryHandler,
filters,
)
# Enable logging
logging.basicConfig(format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", level=logging.INFO)