1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-25 07:31:48 +00:00

sorted imports

This commit is contained in:
2021-07-05 02:54:09 -07:00
parent 43976e873a
commit 371b4505eb
6 changed files with 20 additions and 19 deletions

12
bot.py
View File

@@ -1,17 +1,15 @@
# Works with Python 3.8
import datetime
import html
import io
import json
import logging
import os
import html
import json
import traceback
from logging import debug, info, warning, error, critical
import mplfinance as mpf
from logging import critical, debug, error, info, warning
from uuid import uuid4
import mplfinance as mpf
import telegram
from telegram import (
InlineQueryResultArticle,
@@ -20,13 +18,13 @@ from telegram import (
Update,
)
from telegram.ext import (
CallbackContext,
CommandHandler,
Filters,
InlineQueryHandler,
MessageHandler,
PreCheckoutQueryHandler,
Updater,
CallbackContext,
)
from symbol_router import Router