From 68a93d35df7a95883165dc310c7ead02d72b9fdb Mon Sep 17 00:00:00 2001 From: Ryu18 Date: Wed, 12 Jan 2022 21:41:43 +0100 Subject: [PATCH] remove useless print --- twspace_dl/twspace_dl.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/twspace_dl/twspace_dl.py b/twspace_dl/twspace_dl.py index b050343..cd7bac3 100644 --- a/twspace_dl/twspace_dl.py +++ b/twspace_dl/twspace_dl.py @@ -146,7 +146,6 @@ def guest_token() -> str: guest_token = response["guest_token"] if not guest_token: raise RuntimeError("No guest token found after five retry") - print() logging.debug(guest_token) return guest_token @@ -256,7 +255,6 @@ def playlist_text(self) -> str: """Modify the chunks URL using the master one to be able to download""" playlist_text = requests.get(self.playlist_url).text master_url_wo_file = re.sub("master_playlist\.m3u8.*", "", self.master_url) - print(master_url_wo_file) playlist_text = re.sub(r"(?=chunk)", master_url_wo_file, playlist_text) return playlist_text