Cleanup imports

This commit is contained in:
2025-08-16 23:37:57 +01:00
parent fb5e1bffee
commit facb9c4991
3 changed files with 5 additions and 5 deletions

View File

@@ -1,16 +1,17 @@
import logging
from smsbot.utils import get_smsbot_version
from prometheus_client import Counter, Summary
from telegram import Update
from telegram.ext import (
Application,
ApplicationHandlerStop,
CommandHandler,
ContextTypes,
TypeHandler,
CommandHandler,
)
from smsbot.utils import get_smsbot_version
REQUEST_TIME = Summary(
"telegram_request_processing_seconds", "Time spent processing request"
)