Skip to content

Commit

Permalink
Remove redundant unique_list call in _combine
Browse files Browse the repository at this point in the history
  • Loading branch information
JOJ0 committed Jan 12, 2025
1 parent cc9fdae commit 7c9b593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beetsplug/lastgenre/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def _combine_and_label_genres(
'logging label'.
"""
self._log.debug(f"fetched last.fm tags: {new_genres}")
combined = unique_list(keep_genres + new_genres)
combined = keep_genres + new_genres
resolved = self._resolve_genres(combined)
reduced = self._to_delimited_genre_string(resolved)

Expand Down

0 comments on commit 7c9b593

Please sign in to comment.