feat: replace hardcoded text with variable in bot.py line 183

This commit is contained in:
2025-10-15 13:47:41 +03:00
parent d648830b50
commit 121eb1b11e
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -180,7 +180,7 @@ ID: {user_info['ID']}
Роль: {user_info['Роль']}
"""
else:
info_text = "Информация не найдена."
info_text = USER_MESSAGES['info_not_found']
await update.message.reply_text(info_text, parse_mode='HTML')