From b124861f26a7df91fb17aba89cac890113b63797 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 1 Aug 2023 13:28:11 -0400 Subject: [PATCH] misc: changed default bool value for delete param --- musicdownloader/musicdownloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/musicdownloader/musicdownloader.py b/musicdownloader/musicdownloader.py index b6867ca..8fa745c 100644 --- a/musicdownloader/musicdownloader.py +++ b/musicdownloader/musicdownloader.py @@ -27,7 +27,7 @@ class MusicDownloader(commands.Cog): await ctx.send("The path you've provided doesn't exist!") @commands.command(aliases=["dl"]) - async def download(self, ctx: commands.Context, url: str, delete: bool = True, subfolder: str = None): + async def download(self, ctx: commands.Context, url: str, delete: bool = False, subfolder: str = None): """This command downloads a YouTube Video as an MP3 to the local music directory.""" def youtube_download(self, url: str, path: str, message: discord.Message): """This function does the actual downloading of the YouTube Video."""