diff --git a/src/TelegramBot/main.py b/src/TelegramBot/main.py index 1b41589..f2952ca 100644 --- a/src/TelegramBot/main.py +++ b/src/TelegramBot/main.py @@ -311,6 +311,8 @@ async def top10(message: types.Message): top10_message = '' for user in top10: username = (cursor.execute("SELECT user_name FROM user_list WHERE user_id = ?", (user[0],)).fetchone())[0] + if username is None: + username = "Аноним" top10_message += f"{username} - {user[1]}\n" #в начале сообщения берём текст из config.ini и вставляем в него топ 10 пользователей await message.reply(