Sort imports

This commit is contained in:
2022-06-09 12:12:32 +01:00
parent 7f481c47ed
commit 5d4f83bdc3
2 changed files with 5 additions and 5 deletions

View File

@@ -1,14 +1,15 @@
import logging
from setuptools import Command
from prometheus_client import Counter, Summary, make_wsgi_app
from setuptools import Command
from telegram.ext import CommandHandler, Updater
from smsbot.utils import get_smsbot_version
from prometheus_client import make_wsgi_app, Counter, Summary
REQUEST_TIME = Summary('telegram_request_processing_seconds', 'Time spent processing request')
COMMAND_COUNT = Counter('telegram_command_count', 'Total number of commands processed')
class TelegramSmsBot(object):
def __init__(self, telegram_token, allow_subscribing=False, owner=None, subscribers=None):