From 2ecef2da18138b80ce4b1f5bdcfb6a0902599883 Mon Sep 17 00:00:00 2001 From: Sphericalkat Date: Sat, 25 May 2024 18:05:01 +0530 Subject: [PATCH] fix(handler): add missing 'deez' Signed-off-by: Sphericalkat --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 4d4be19..3514df2 100644 --- a/main.py +++ b/main.py @@ -41,7 +41,7 @@ async def message_handler(update: Update, context: ContextTypes.DEFAULT_TYPE): phrase = random.choice(exploitable_phrases) - await msg.reply_text(phrase) + await msg.reply_text(f"{phrase} deez") if __name__ == "__main__":