From b706d4905fcf87ec74c5a83b51beb67cae974d1a Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 31 Jul 2023 23:25:12 -0400 Subject: [PATCH] fix: missing a required argument on youtube_download --- musicdownloader/musicdownloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/musicdownloader/musicdownloader.py b/musicdownloader/musicdownloader.py index 0641f29..3a3b2df 100644 --- a/musicdownloader/musicdownloader.py +++ b/musicdownloader/musicdownloader.py @@ -86,4 +86,4 @@ class MusicDownloader(commands.Cog): else: msg = ctx.send message = await msg("YouTube Downloader started!") - youtube_download(url, data_path, message) + youtube_download(self, url, data_path, message)