Skip to content

Commit

Permalink
Fixed #75
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalec committed Oct 6, 2022
1 parent 9c538a1 commit 84a2977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deemon/utils/dataprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def csv_to_list(all_artists) -> list:
"""
Separate artists and replace delimiter to find artists containing commas in their name
"""
all_artists = [x for x in all_artists]
all_artists = [str(x) for x in all_artists]
processed_artists = []
for artist in all_artists:
if artist[-1] == ',':
Expand Down

0 comments on commit 84a2977

Please sign in to comment.