- Added `__all__` declaration in `db/__init__.py` for better module export management. - Simplified command text formatting in `handlers/commands.py` for improved readability. - Refactored error handler function signature in `handlers/errors.py` for better code style. - Introduced comprehensive tests for API duties and Telegram authentication in new test files.
17 lines
522 B
Python
17 lines
522 B
Python
"""Global error handler: log exception and notify user."""
|
|
|
|
import logging
|
|
|
|
from telegram import Update
|
|
from telegram.ext import ContextTypes
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
async def error_handler(
|
|
update: Update | None, context: ContextTypes.DEFAULT_TYPE
|
|
) -> None:
|
|
logger.exception("Exception while handling an update")
|
|
if isinstance(update, Update) and update.effective_message:
|
|
await update.effective_message.reply_text("Произошла ошибка. Попробуйте позже.")
|