From 937d6ed47acd91958d73dde795202a1e501f6e8a Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Thu, 24 Feb 2022 09:39:12 +0700 Subject: [PATCH] treewide: some fixes & improvements --- program/music_stream.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/program/music_stream.py b/program/music_stream.py index 4fe2c3f..f88362a 100644 --- a/program/music_stream.py +++ b/program/music_stream.py @@ -23,7 +23,6 @@ from pyrogram import Client from pyrogram.errors import UserAlreadyParticipant, UserNotParticipant from pyrogram.types import InlineKeyboardMarkup, Message -from pytgcalls import idle from pytgcalls import StreamType from pytgcalls.types.input_stream import AudioPiped from pytgcalls.types.input_stream.quality import HighQualityAudio @@ -56,7 +55,6 @@ def ytsearch(query: str): print(e) return 0 - async def ytdl(link: str): stdout, stderr = await bash( f'yt-dlp --geo-bypass -g -f "best[height<=?720][width<=?1280]/best" {link}' @@ -169,7 +167,6 @@ async def play_tg_file(c: Client, m: Message, replied: Message = None, link: str f"⏱️ **Duration:** `{duration}`\n" f"🧸 **Request by:** {requester}", ) - await idle() remove_if_exists(image) except (NoActiveGroupCall, GroupCallNotFound): await suhu.delete() @@ -296,7 +293,6 @@ async def play(c: Client, m: Message): reply_markup=InlineKeyboardMarkup(buttons), caption=f"🗂 **Name:** [{songname}]({url}) | `music`\n**⏱ Duration:** `{duration}`\n🧸 **Request by:** {requester}", ) - await idle() remove_if_exists(image) except (NoActiveGroupCall, GroupCallNotFound): await suhu.delete() @@ -371,7 +367,6 @@ async def play(c: Client, m: Message): reply_markup=InlineKeyboardMarkup(buttons), caption=f"🗂 **Name:** [{songname}]({url}) | `music`\n**⏱ Duration:** `{duration}`\n🧸 **Request by:** {requester}", ) - await idle() remove_if_exists(image) except (NoActiveGroupCall, GroupCallNotFound): await suhu.delete()