From 1a1b35696aa53ff9b69d07d88d64f5886e79bc83 Mon Sep 17 00:00:00 2001 From: Nathan Thomas Date: Fri, 21 Jan 2022 16:27:50 -0800 Subject: [PATCH] Formatting --- streamrip/constants.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/streamrip/constants.py b/streamrip/constants.py index 72395d4..252903e 100644 --- a/streamrip/constants.py +++ b/streamrip/constants.py @@ -1,8 +1,9 @@ """Constants that are kept in one place.""" -import mutagen.id3 as id3 import base64 +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" @@ -176,7 +177,9 @@ COVER_SIZES = ("thumbnail", "small", "large", "original") TIDAL_CLIENT_INFO = { "id": base64.b64decode("OFNFWldhNEoxTlZDNVU1WQ==").decode("iso-8859-1"), - "secret": base64.b64decode("b3dVWURreGRkeis5RnB2R1gyNERseEVDTnRGRU1CeGlwVTBsQmZyYnE2MD0=").decode("iso-8859-1"), + "secret": base64.b64decode( + "b3dVWURreGRkeis5RnB2R1gyNERseEVDTnRGRU1CeGlwVTBsQmZyYnE2MD0=" + ).decode("iso-8859-1"), } QOBUZ_BASE = "https://www.qobuz.com/api.json/0.2"