9 lines
268 B
Python
9 lines
268 B
Python
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 |