From 3b2875ccd146a8b13e91aeb0156a734a86c95179 Mon Sep 17 00:00:00 2001 From: Rafael Moraes <50295204+glomatico@users.noreply.github.com> Date: Fri, 24 Apr 2026 12:59:01 -0300 Subject: [PATCH] Remove use_wrapper parameter and attribute --- gamdl/downloader/base.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gamdl/downloader/base.py b/gamdl/downloader/base.py index d274dfb..96c579e 100644 --- a/gamdl/downloader/base.py +++ b/gamdl/downloader/base.py @@ -27,7 +27,6 @@ class AppleMusicBaseDownloader: mp4decrypt_path: str = "mp4decrypt", ffmpeg_path: str = "ffmpeg", mp4box_path: str = "MP4Box", - use_wrapper: bool = False, wrapper_decrypt_ip: str = "127.0.0.1:10020", download_mode: DownloadMode = DownloadMode.YTDLP, album_folder_template: str = "{album_artist}/{album}", @@ -50,7 +49,6 @@ class AppleMusicBaseDownloader: self.mp4decrypt_path = mp4decrypt_path self.ffmpeg_path = ffmpeg_path self.mp4box_path = mp4box_path - self.use_wrapper = use_wrapper self.wrapper_decrypt_ip = wrapper_decrypt_ip self.download_mode = download_mode self.album_folder_template = album_folder_template