Closed anntzer closed 8 years ago
On Python3 zip returns an iterator, so the earlier
self.artist_map.update([pair[::-1] for pair in paired_artists])
had no effect. Replace by iterating on the new dict itself.
On Python3 zip returns an iterator, so the earlier
had no effect. Replace by iterating on the new dict itself.