From 960c9c97a7ea1f6fbbd66963c5e9942789e04b86 Mon Sep 17 00:00:00 2001 From: Pavel_Duron Date: Tue, 22 Nov 2022 22:23:41 +1000 Subject: [PATCH] =?UTF-8?q?test=20tupple=20=D0=BE=D1=82=D0=BA=D0=B0=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bot.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bot.py b/bot.py index f2d9544..38d9744 100644 --- a/bot.py +++ b/bot.py @@ -118,9 +118,7 @@ async def send_time(message: types.Message): Base = declarative_base() for user_fullname, dick_size in session.query(user.user_fullname, user.dick_size).order_by(user.dick_size.desc()).limit(10).all(): - a = user_fullname, dick_size - b = ''.join(a[0]) - await bot.send_message(message.chat.id, f'{b}\n') + await bot.send_message(message.chat.id, f'{user_fullname} {dick_size}\n') session.close_all()