From 2126525f0d329b7dc1d677fa1c5115335e668ad8 Mon Sep 17 00:00:00 2001 From: Bendy <190111823+FlashJetton@users.noreply.github.com> Date: Tue, 29 Jul 2025 19:36:55 +0700 Subject: [PATCH] Fix undefined name error in config.py --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index ba63dea..bb487ed 100644 --- a/config.py +++ b/config.py @@ -3,7 +3,7 @@ # ============================================================================= # REQUIRED! Enter your Telegram ID (get from @userinfobot) -ADMIN_ID = XXX +ADMIN_ID = 1234567890 # Bot usage mode: 'private' (owner only), 'free' (public with limits), 'pay' (monetized) TYPE_USAGE = 'private' -- 2.38.5