From d2239f747e307cfc04978c12f88ccda1cf2ea77c Mon Sep 17 00:00:00 2001 From: Timothy Rae Date: Thu, 22 Jul 2021 01:04:08 +1200 Subject: [PATCH] Remove outdated comment --- sync.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sync.py b/sync.py index 9b4db0d..4b79b3a 100755 --- a/sync.py +++ b/sync.py @@ -174,9 +174,7 @@ class TidalPlaylistCache: self._data = tidal_session.get_playlist_tracks(playlist.id) def _search(self, spotify_track): - ''' check if the given spotify track was already in the tidal playlist. - this uses a looser criteria than the main search algorithm to allow - the user to manually add tracks that weren't initially found ''' + ''' check if the given spotify track was already in the tidal playlist.''' results = [] for tidal_track in self._data: if match(tidal_track, spotify_track):