From 61079a6c7b630ff2f81376ce7d67d1eb5e18e021 Mon Sep 17 00:00:00 2001 From: Nathan Thomas Date: Thu, 16 Sep 2021 11:44:07 -0700 Subject: [PATCH] Formatting --- streamrip/constants.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/streamrip/constants.py b/streamrip/constants.py index e8eb3b0..bce45d7 100644 --- a/streamrip/constants.py +++ b/streamrip/constants.py @@ -4,9 +4,7 @@ import mutagen.id3 as id3 AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:83.0) Gecko/20100101 Firefox/83.0" -TIDAL_COVER_URL = ( - "https://resources.tidal.com/images/{uuid}/{width}x{height}.jpg" -) +TIDAL_COVER_URL = "https://resources.tidal.com/images/{uuid}/{width}x{height}.jpg" # Get this from (base64encoded) # aHR0cHM6Ly9hLXYyLnNuZGNkbi5jb20vYXNzZXRzLzItYWIxYjg1NjguanM= # Don't know if this is a static url yet @@ -142,7 +140,9 @@ ALBUM_KEYS = ( "id", ) # TODO: rename these to DEFAULT_FOLDER_FORMAT etc -FOLDER_FORMAT = "{albumartist} - {title} ({year}) [{container}] [{bit_depth}B-{sampling_rate}kHz]" +FOLDER_FORMAT = ( + "{albumartist} - {title} ({year}) [{container}] [{bit_depth}B-{sampling_rate}kHz]" +) TRACK_FORMAT = "{tracknumber}. {artist} - {title}"