From 2e910eb6b6af63d65265e93314c922df55087309 Mon Sep 17 00:00:00 2001
From: Luca Bilke <luca@snaile.de>
Date: Tue, 27 Jun 2023 16:51:11 +0200
Subject: [PATCH] remove unused print statement

---
 tidal_scrape.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tidal_scrape.py b/tidal_scrape.py
index c6717cc..d1750f4 100755
--- a/tidal_scrape.py
+++ b/tidal_scrape.py
@@ -94,7 +94,6 @@ def download_track(
 
         stream.manifest = json.loads(base64.b64decode(stream.manifest))
         url = stream.manifest["urls"][0]
-        print(url)
         if '.flac' in url:
             dest_path += '.flac'
         elif '.mp4' in url: