Remove outdated comment

This commit is contained in:
Timothy Rae
2021-07-22 01:04:08 +12:00
parent 2e69f1d28c
commit d2239f747e

View File

@@ -174,9 +174,7 @@ class TidalPlaylistCache:
self._data = tidal_session.get_playlist_tracks(playlist.id) self._data = tidal_session.get_playlist_tracks(playlist.id)
def _search(self, spotify_track): def _search(self, spotify_track):
''' check if the given spotify track was already in the tidal playlist. ''' 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 '''
results = [] results = []
for tidal_track in self._data: for tidal_track in self._data:
if match(tidal_track, spotify_track): if match(tidal_track, spotify_track):