From fd73e84f06cebfc3c81c2047673b9cfd083a12f4 Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Tue, 8 Feb 2022 11:42:23 +0700 Subject: [PATCH] formatter --- program/playlist.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/program/playlist.py b/program/playlist.py index 73a93b8..8c905a6 100644 --- a/program/playlist.py +++ b/program/playlist.py @@ -30,15 +30,15 @@ async def playlist(client, m: Message): if chat_id in QUEUE: chat_queue = get_queue(chat_id) if len(chat_queue)==1: - await m.reply(f"šŸ’” **Currently Streaming:**\n\nā€¢ [{chat_queue[0][0]}]({chat_queue[0][2]}) | `{chat_queue[0][3]}`", reply_markup=keyboard, disable_web_page_preview=True) + await m.reply(f"šŸ’” **Currently Streaming**`:`\n\n*ļøāƒ£ [{chat_queue[0][0]}]({chat_queue[0][2]}) | `{chat_queue[0][3]}`", reply_markup=keyboard, disable_web_page_preview=True) else: - QUE = f"šŸ’” **Currently Streaming:**\n\nā€¢ [{chat_queue[0][0]}]({chat_queue[0][2]}) | `{chat_queue[0][3]}` \n\n**šŸ“– Queue List:**\n" + QUE = f"šŸ’” **Currently Streaming**`:`\n\n*ļøāƒ£ [{chat_queue[0][0]}]({chat_queue[0][2]}) | `{chat_queue[0][3]}` \n\n**šŸ“– Queue song list**`:`\n" l = len(chat_queue) for x in range (1, l): han = chat_queue[x][0] hok = chat_queue[x][2] hap = chat_queue[x][3] - QUE = QUE + "\n" + f"**#{x}** - [{han}]({hok}) | `{hap}`" + QUE = QUE + "\n" + f"`#{x}` - [{han}]({hok}) | `{hap}`" await m.reply(QUE, reply_markup=keyboard, disable_web_page_preview=True) else: await m.reply("āŒ **nothing is currently streaming.**")