from telegram import ForceReply, Update from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters, ConversationHandler import os class Extension: enabled = int(os.getenv("DEBUG", 1)) def __init__(self, core) -> None: pass async def __call__(self, update: Update, context: ContextTypes.DEFAULT_TYPE): if self.enabled: print(update.to_json())