from telegram import Update from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes import configparser import json import os async def error(update: Update, context: ContextTypes.DEFAULT_TYPE): await update.message.reply_text("nope") return