diff --git a/free_bandcamp_downloader/__main__.py b/free_bandcamp_downloader/__main__.py index 5ba84ce..e5764a2 100644 --- a/free_bandcamp_downloader/__main__.py +++ b/free_bandcamp_downloader/__main__.py @@ -185,11 +185,6 @@ def post_download(album_info: AlbumInfo, config: Config): if unzip and file_name.endswith(".zip"): files = BCFreeDownloader.unzip_album(file_name) - logger.info("Setting tags...") - for file in files: - BCFreeDownloader.tag_file(file, album_info["head_data"]) - - def download_urls(urls: List[str], config: Config): downloader = BCFreeDownloader(options_from_config(config)) downloaded = get_downloaded(config) diff --git a/free_bandcamp_downloader/bc_free_downloader.py b/free_bandcamp_downloader/bc_free_downloader.py index 52d4070..bb26e78 100644 --- a/free_bandcamp_downloader/bc_free_downloader.py +++ b/free_bandcamp_downloader/bc_free_downloader.py @@ -5,7 +5,6 @@ import os import re import time import zipfile -import mutagen import pyrfc6266 import requests